#104176

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/