Files
svg-sprites/integration/apps/vue-vite/vite.config.ts

15 lines
277 B
TypeScript
Raw Normal View History

import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite'
export default defineConfig({
plugins: [
vue({
template: {
compilerOptions: {
isCustomElement: (tag) => tag === 'gromlab-sprite-viewer',
},
},
}),
],
})