Files
OPENCNC-J/desktop/template/vite.config.ts
2023-08-28 22:37:55 +08:00

17 lines
286 B
TypeScript

import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
export default defineConfig({
server: {
port: 6173
},
plugins: [
vue()
],
build: {
sourcemap: false
},
optimizeDeps: {
exclude: ["punycode"]
},
})