You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is clean plugin generated with dll:build command.
What next?
If I import it like import LukanaPlugin from '../../../../../../../../libsJs/ckeditor5-lukana/build/lukana.js';
I get error while console.log(LukanaPlugin): ReferenceError: CKEditor5 is not defined
also tried import {LukanaPlugin}import * as LukanaPlugin. Always the same error.
How to import dll plugins in angular? Or how to export them in Package Generator?
The text was updated successfully, but these errors were encountered:
Make sure that your app includes the main DLL build, without it, the plugin will not work:
<!-- Base DLL build in plain HTML --><!-- Note: It includes ckeditor5-paragraph too. --><scriptsrc="path/to/node_modules/ckeditor5/build/ckeditor5-dll.js"></script>
I'm trying to add plugin that is created with Package Generator
It is clean plugin generated with
dll:build
command.What next?
If I import it like
import LukanaPlugin from '../../../../../../../../libsJs/ckeditor5-lukana/build/lukana.js';
I get error while
console.log(LukanaPlugin)
:ReferenceError: CKEditor5 is not defined
also tried
import {LukanaPlugin}
import * as LukanaPlugin
. Always the same error.How to import dll plugins in angular? Or how to export them in
Package Generator
?The text was updated successfully, but these errors were encountered: