30 lines
538 B
JavaScript
30 lines
538 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"),
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
build: {
|
|
lib: {
|
|
entry: "./src/main.js",
|
|
name: "main",
|
|
fileName: "main",
|
|
},
|
|
},
|
|
define: {
|
|
"process.env": process.env,
|
|
},
|
|
server: {
|
|
port: 5174,
|
|
},
|
|
});
|