JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › General Discussions › [Vue warn]: Failed to resolve component: smart-editor If this is a native custom › Reply To: [Vue warn]: Failed to resolve component: smart-editor If this is a native custom
January 9, 2023 at 12:00 pm
#104176
svetoslav_borislavov
Participant
Hi,
Have you used the Vite tooling, if so you can modify the Vite config
vite.config.js:
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue({
template: {
compilerOptions: {
isCustomElement: tag => tag.startsWith('smart-')
}
}
})],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})
I hope this helps you resolve the problem
Best Regards,
Svetoslav Borislavov
Smart UI Team
https://www.htmlelements.com/
- This reply was modified 1 year, 8 months ago by svetoslav_borislavov.
- This reply was modified 1 year, 8 months ago by svetoslav_borislavov.