2024-07-22 20:24:18 +08:00
|
|
|
import { fileURLToPath, URL } from "node:url";
|
2023-09-28 13:50:15 +08:00
|
|
|
import { ConfigEnv, UserConfig } from "vite";
|
|
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
2024-07-22 20:24:18 +08:00
|
|
|
import vueDevTools from "vite-plugin-vue-devtools";
|
2023-09-28 13:50:15 +08:00
|
|
|
import compression from "vite-plugin-compression";
|
|
|
|
import { visualizer } from "rollup-plugin-visualizer";
|
|
|
|
import { proxy } from "./src/config/proxy";
|
2024-04-23 17:26:21 +08:00
|
|
|
import { cool } from "@cool-vue/vite-plugin";
|
2023-09-28 13:50:15 +08:00
|
|
|
|
2024-07-22 20:24:18 +08:00
|
|
|
function toPath(dir: string) {
|
|
|
|
return fileURLToPath(new URL(dir, import.meta.url));
|
2023-09-28 13:50:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// https://vitejs.dev/config
|
|
|
|
export default ({ mode }: ConfigEnv): UserConfig => {
|
2024-07-22 20:24:18 +08:00
|
|
|
const isDev = mode === "development";
|
|
|
|
|
2023-09-28 13:50:15 +08:00
|
|
|
return {
|
|
|
|
plugins: [
|
|
|
|
vue(),
|
|
|
|
compression(),
|
|
|
|
vueJsx(),
|
2024-07-22 20:24:18 +08:00
|
|
|
// vueDevTools(),
|
2024-04-23 17:26:21 +08:00
|
|
|
cool({
|
|
|
|
type: "admin",
|
2024-08-13 17:29:12 +08:00
|
|
|
proxy,
|
|
|
|
eps: {
|
|
|
|
enable: true
|
|
|
|
}
|
2024-04-23 17:26:21 +08:00
|
|
|
}),
|
2023-09-28 13:50:15 +08:00
|
|
|
visualizer({
|
|
|
|
open: false,
|
|
|
|
gzipSize: true,
|
|
|
|
brotliSize: true
|
|
|
|
})
|
|
|
|
],
|
|
|
|
base: "/",
|
|
|
|
server: {
|
|
|
|
port: 9000,
|
|
|
|
proxy,
|
|
|
|
hmr: {
|
|
|
|
overlay: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
css: {
|
|
|
|
preprocessorOptions: {
|
|
|
|
scss: {
|
|
|
|
charset: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
2024-07-22 20:24:18 +08:00
|
|
|
"/@": toPath("./src"),
|
|
|
|
"/$": toPath("./src/modules"),
|
|
|
|
"/#": toPath("./src/plugins"),
|
|
|
|
"/~": toPath("./packages")
|
2023-09-28 13:50:15 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
esbuild: {
|
2024-07-29 11:28:48 +08:00
|
|
|
// drop: isDev ? [] : ["console", "debugger"]
|
2023-09-28 13:50:15 +08:00
|
|
|
},
|
|
|
|
build: {
|
|
|
|
minify: "esbuild",
|
|
|
|
// terserOptions: {
|
|
|
|
// compress: {
|
|
|
|
// drop_console: true,
|
|
|
|
// drop_debugger: true
|
|
|
|
// }
|
|
|
|
// },
|
2024-07-22 20:24:18 +08:00
|
|
|
sourcemap: isDev,
|
2023-09-28 13:50:15 +08:00
|
|
|
rollupOptions: {
|
|
|
|
output: {
|
|
|
|
chunkFileNames: "static/js/[name]-[hash].js",
|
|
|
|
entryFileNames: "static/js/[name]-[hash].js",
|
|
|
|
assetFileNames: "static/[ext]/[name]-[hash].[ext]",
|
|
|
|
manualChunks(id) {
|
|
|
|
if (id.includes("node_modules")) {
|
|
|
|
if (!["@cool-vue/crud"].find((e) => id.includes(e))) {
|
2024-07-16 13:10:13 +08:00
|
|
|
if (id.includes("prettier")) {
|
|
|
|
return;
|
2023-09-28 13:50:15 +08:00
|
|
|
}
|
|
|
|
|
2024-07-16 13:10:13 +08:00
|
|
|
return id
|
|
|
|
.toString()
|
|
|
|
.split("node_modules/")[1]
|
|
|
|
.replace(".pnpm/", "")
|
|
|
|
.split("/")[0];
|
|
|
|
} else {
|
|
|
|
return "comm";
|
2023-09-28 13:50:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|