17 lines
483 B
JavaScript
17 lines
483 B
JavaScript
import StarterKit from '@tiptap/starter-kit';
|
|
import { TableKit } from '@tiptap/extension-table';
|
|
import { ResizableImage } from './tiptap-resizable-image';
|
|
|
|
export function createExtensions() {
|
|
return [
|
|
StarterKit.configure({
|
|
heading: { levels: [2, 3, 4, 5, 6] },
|
|
}),
|
|
ResizableImage.configure({
|
|
inline: false,
|
|
allowBase64: false,
|
|
HTMLAttributes: { loading: 'lazy' },
|
|
}),
|
|
TableKit,
|
|
];
|
|
}
|