Thank you for development this project. 👍
I found one bug, about importing js file.
when setting exts in nuxt.config.js,
//..
tui: {
editor: {
stylesheet: {
contents: '~/assets/css/custom-tui-content.css',
codeHighlight: '~/assets/css/custom-highlight.css',
},
exts : ['uml', 'chart', 'table']
}
}
//..
after build, look at the following file
.next/tui/editor.client.js
///...
import('tui-editor/dist/tui-editor-extuml')
import('tui-editor/dist/tui-editor-extchart')
import('tui-editor/dist/tui-editor-exttable')
///...
The file name is imported in lowercase.
The real file name is
tui-editor-extChart.js
tui-editor-extTable.js
tui-editor-extUML.js
so, i ran build, have the following bug.
Module not found: Error: Can't resolve 'tui-editor/dist/tui-editor-extchart'
Module not found: Error: Can't resolve 'tui-editor/dist/tui-editor-exttable'
Module not found: Error: Can't resolve 'tui-editor/dist/tui-editor-extuml'
Thank you for development this project. 👍
I found one bug, about importing js file.
when setting
extsinnuxt.config.js,after build, look at the following file
.next/tui/editor.client.jsThe file name is imported in
lowercase.The real file name is
tui-editor-extChart.jstui-editor-extTable.jstui-editor-extUML.jsso, i ran build, have the following bug.
Module not found: Error: Can't resolve 'tui-editor/dist/tui-editor-extchart'Module not found: Error: Can't resolve 'tui-editor/dist/tui-editor-exttable'Module not found: Error: Can't resolve 'tui-editor/dist/tui-editor-extuml'