mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
17 lines
367 B
JavaScript
17 lines
367 B
JavaScript
import { defineConfig } from "vite";
|
|
import vue from "@vitejs/plugin-vue2";
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
base: "/",
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
entryFileNames: "[name].js",
|
|
chunkFileNames: "[name].[hash].js",
|
|
assetFileNames: "[name].[hash].[extname]",
|
|
},
|
|
},
|
|
target: "es2022",
|
|
},
|
|
});
|