26 lines
533 B
TypeScript
26 lines
533 B
TypeScript
import { fileURLToPath, URL } from "node:url";
|
|
|
|
import vue from "@vitejs/plugin-vue";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
"@": fileURLToPath(new URL("./src", import.meta.url))
|
|
}
|
|
},
|
|
build: {
|
|
outDir: "dist",
|
|
emptyOutDir: true,
|
|
sourcemap: false,
|
|
rollupOptions: {
|
|
output: {
|
|
entryFileNames: "app.js",
|
|
chunkFileNames: "assets/[name].js",
|
|
assetFileNames: "assets/[name][extname]"
|
|
}
|
|
}
|
|
}
|
|
});
|