2026-07-13 20:08:31 +03:00
|
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
2026-07-15 16:56:44 +03:00
|
|
|
plugins: [
|
|
|
|
|
vue({
|
|
|
|
|
template: {
|
|
|
|
|
compilerOptions: {
|
|
|
|
|
isCustomElement: (tag) => tag === 'gromlab-sprite-viewer',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}),
|
|
|
|
|
],
|
2026-07-13 20:08:31 +03:00
|
|
|
})
|