-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
55 lines (54 loc) · 1.64 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import del from "rollup-plugin-delete";
import { visualizer } from "rollup-plugin-visualizer";
import path from "path";
import mkcert from "vite-plugin-mkcert";
export default defineConfig({
resolve: {
alias: {
"@assets": path.resolve(__dirname, "./src/assets/"),
"@composables": path.resolve(__dirname, "./src/composables/index.ts"),
"@components": path.resolve(__dirname, "./src/components/index.ts"),
"@pages": path.resolve(__dirname, "./src/pages/index.ts"),
"@routes": path.resolve(__dirname, "./src/routes/index.ts"),
"@store": path.resolve(__dirname, "./src/store/index.ts"),
"@types": path.resolve(__dirname, "./src/types/index.ts"),
"@validation": path.resolve(__dirname, "./src/validation/index.ts"),
},
},
server: {
port: 8008,
},
plugins: [vue(), visualizer(), mkcert()],
build: {
target: "esnext",
rollupOptions: {
plugins: [del({ targets: "dist/*" })],
output: {
chunkFileNames: "vendors/[name]-[hash].js",
manualChunks(id) {
if (id.includes("node_modules")) {
return id
.toString()
.split("node_modules/")[1]
.split("/")[0]
.toString();
}
},
},
treeshake: true,
},
minify: "terser",
terserOptions: {
mangle: true,
sourceMap: true,
toplevel: true,
compress: true,
},
assetsDir: "src",
cssCodeSplit: true,
cssMinify: "lightningcss",
sourcemap: "inline",
},
});