29 lines
670 B
JavaScript
29 lines
670 B
JavaScript
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue({
|
|
template: {
|
|
compilerOptions: {
|
|
isCustomElement: (tag) => tag.includes('event-form') || tag.includes('event-index') || tag.includes('event-description'),
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
build: {
|
|
manifest: 'manifest.json',
|
|
rollupOptions: {
|
|
input: 'src/main.js',
|
|
}
|
|
},
|
|
define: {
|
|
'process.env': process.env,
|
|
},
|
|
server: {
|
|
port: 5174,
|
|
host: '0.0.0.0',
|
|
},
|
|
});
|