Attachment
Attachment is a node extension that allows you to add an Attachment to your editor.
Usage
tsx
import { Attachment } from 'reactjs-tiptap-editor';
const extensions = [
...,
// Import Extensions Here
Attachment.configure({
upload: (file: any) => {
// upload file to server return url
},
}),
];