diff --git a/build/examples/webpack.config.js b/build/examples/webpack.config.js index 9b889fa9c..772b5aceb 100644 --- a/build/examples/webpack.config.js +++ b/build/examples/webpack.config.js @@ -42,6 +42,7 @@ export default { 'tiptap-commands': path.resolve(rootPath, '../packages/tiptap-commands/src'), 'tiptap-utils': path.resolve(rootPath, '../packages/tiptap-utils/src'), 'tiptap-models': path.resolve(rootPath, '../packages/tiptap-models/src'), + 'tiptap-extensions': path.resolve(rootPath, '../packages/tiptap-extensions/src'), }, modules: [ srcPath, diff --git a/examples/Components/Routes/Embeds/Iframe.js b/examples/Components/Routes/Embeds/Iframe.js index 078d0e522..35a5d452c 100644 --- a/examples/Components/Routes/Embeds/Iframe.js +++ b/examples/Components/Routes/Embeds/Iframe.js @@ -1,4 +1,4 @@ -import { Node } from 'tiptap-models' +import { Node } from 'tiptap' export default class IframeNode extends Node { diff --git a/examples/Components/Routes/Embeds/index.vue b/examples/Components/Routes/Embeds/index.vue index f67b17c0a..48c74a05e 100644 --- a/examples/Components/Routes/Embeds/index.vue +++ b/examples/Components/Routes/Embeds/index.vue @@ -19,6 +19,21 @@