2023-01-29 05:44:19 +00:00
|
|
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
|
|
|
|
import visualizer from "rollup-plugin-visualizer";
|
|
|
|
|
import viteCompression from "vite-plugin-compression";
|
|
|
|
|
import PurgeIcons from "vite-plugin-purge-icons";
|
|
|
|
|
import * as path from "path";
|
2023-02-01 19:24:05 +00:00
|
|
|
|
// import WindiCSS from "vite-plugin-windicss";
|
2023-01-29 05:44:19 +00:00
|
|
|
|
// import { generateModifyVars } from "./build/modify-vars";
|
|
|
|
|
// import { configThemePlugin } from "./build/theme-plugin";
|
|
|
|
|
// import OptimizationPersist from "vite-plugin-optimize-persist";
|
|
|
|
|
// import PkgConfig from "vite-plugin-package-config";
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
// 增加环境变量 _
|
|
|
|
|
process.env.VITE_APP_VERSION = require("./package.json").version;
|
|
|
|
|
process.env.VITE_APP_BUILD_TIME = require("dayjs")().format("YYYY-M-D HH:mm:ss");
|
|
|
|
|
|
|
|
|
|
export default ({ command, mode }) => {
|
|
|
|
|
console.log("args", command, mode);
|
|
|
|
|
|
|
|
|
|
let devServerFs: any = {};
|
|
|
|
|
let devAlias: any[] = [];
|
|
|
|
|
if (mode.startsWith("debug")) {
|
|
|
|
|
devAlias = [
|
|
|
|
|
{ find: /@fast-crud\/fast-crud\/dist/, replacement: path.resolve("../../fast-crud/src/") },
|
|
|
|
|
{ find: /@fast-crud\/fast-crud$/, replacement: path.resolve("../../fast-crud/src/") },
|
|
|
|
|
{ find: /@fast-crud\/fast-extends\/dist/, replacement: path.resolve("../../fast-extends/src/") },
|
|
|
|
|
{ find: /@fast-crud\/fast-extends$/, replacement: path.resolve("../../fast-extends/src/") },
|
|
|
|
|
{ find: /@fast-crud\/ui-antdv$/, replacement: path.resolve("../../ui/ui-antdv/src/") }
|
|
|
|
|
];
|
|
|
|
|
devServerFs = {
|
|
|
|
|
// 这里配置dev启动时读取的项目根目录
|
2023-02-09 19:24:00 +00:00
|
|
|
|
allow: ["../../../"]
|
2023-01-29 05:44:19 +00:00
|
|
|
|
};
|
|
|
|
|
console.log("devAlias", devAlias);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
base: "/",
|
|
|
|
|
plugins: [
|
|
|
|
|
vueJsx(),
|
|
|
|
|
vue(),
|
|
|
|
|
// 压缩build后的代码
|
|
|
|
|
viteCompression(),
|
|
|
|
|
PurgeIcons({
|
|
|
|
|
// iconSource: "local"
|
|
|
|
|
// remoteDataAPI: "https://gitee.com/fast-crud/collections-json/raw/master/json",
|
|
|
|
|
// includedCollections: ["ion"]
|
|
|
|
|
})
|
|
|
|
|
//主题色替换
|
|
|
|
|
//...configThemePlugin(true),
|
|
|
|
|
// viteThemePlugin({
|
|
|
|
|
// // Match the color to be modified
|
|
|
|
|
// colorVariables: ["#1890ff", "#40a9ff"]
|
|
|
|
|
// }),
|
|
|
|
|
// windicss tailwindcss
|
|
|
|
|
// WindiCSS()
|
|
|
|
|
],
|
|
|
|
|
esbuild: {
|
2023-02-01 19:24:05 +00:00
|
|
|
|
drop: command === "build" ? ["debugger"] : [],
|
2023-01-29 05:44:19 +00:00
|
|
|
|
// pure: ["console.log", "debugger"],
|
|
|
|
|
jsxFactory: "h",
|
|
|
|
|
jsxFragment: "Fragment"
|
|
|
|
|
},
|
|
|
|
|
resolve: {
|
2023-02-01 19:24:05 +00:00
|
|
|
|
alias: [...devAlias, { find: "/@", replacement: path.resolve("./src") }, { find: "/#", replacement: path.resolve("./types") }],
|
2023-01-29 05:44:19 +00:00
|
|
|
|
dedupe: ["vue"]
|
|
|
|
|
},
|
|
|
|
|
optimizeDeps: {
|
|
|
|
|
include: ["ant-design-vue"]
|
|
|
|
|
},
|
|
|
|
|
build: {
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
plugins: [visualizer()]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
css: {
|
|
|
|
|
preprocessorOptions: {
|
|
|
|
|
less: {
|
|
|
|
|
// 修改默认主题颜色,配置less变量
|
|
|
|
|
// modifyVars: generateModifyVars(),
|
|
|
|
|
javascriptEnabled: true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
server: {
|
|
|
|
|
port: 3002,
|
|
|
|
|
fs: devServerFs,
|
|
|
|
|
proxy: {
|
|
|
|
|
// with options
|
|
|
|
|
"/api": {
|
|
|
|
|
//配套后端 https://github.com/fast-crud/fs-server-js
|
|
|
|
|
target: "http://127.0.0.1:7001"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
};
|