2022-05-20 10:36:51 +08:00
|
|
|
import path from "path";
|
|
|
|
import { UserConfig } from "vite";
|
|
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
2022-07-29 17:52:00 +08:00
|
|
|
import compression from "vite-plugin-compression";
|
2022-05-20 10:36:51 +08:00
|
|
|
import { proxy } from "./src/cool/config/proxy";
|
|
|
|
import { cool } from "./build/cool";
|
|
|
|
|
|
|
|
function resolve(dir: string) {
|
|
|
|
return path.resolve(__dirname, ".", dir);
|
|
|
|
}
|
|
|
|
|
2022-07-21 19:07:32 +08:00
|
|
|
// https://vitejs.dev/config
|
2022-05-20 10:36:51 +08:00
|
|
|
|
|
|
|
export default (): UserConfig => {
|
|
|
|
return {
|
|
|
|
base: "/",
|
2022-07-29 17:52:00 +08:00
|
|
|
plugins: [vue(), compression(), vueJsx(), cool()],
|
2022-05-20 10:36:51 +08:00
|
|
|
css: {
|
|
|
|
preprocessorOptions: {
|
|
|
|
scss: {
|
|
|
|
charset: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
"/@": resolve("src"),
|
|
|
|
"/#": resolve("types"),
|
|
|
|
"/$": resolve("src/modules")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
server: {
|
|
|
|
port: 9000,
|
|
|
|
proxy,
|
|
|
|
hmr: {
|
|
|
|
overlay: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
build: {
|
2022-07-29 01:43:56 +08:00
|
|
|
minify: "terser",
|
2022-07-21 19:07:32 +08:00
|
|
|
terserOptions: {
|
|
|
|
compress: {
|
|
|
|
drop_console: true,
|
|
|
|
drop_debugger: true
|
|
|
|
}
|
|
|
|
},
|
2022-05-20 10:36:51 +08:00
|
|
|
sourcemap: false,
|
|
|
|
rollupOptions: {
|
|
|
|
output: {
|
2022-07-21 19:07:32 +08:00
|
|
|
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))) {
|
|
|
|
return id
|
|
|
|
.toString()
|
|
|
|
.split("node_modules/")[1]
|
|
|
|
.split("/")[0]
|
|
|
|
.toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-20 10:36:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|