Merge remote-tracking branch 'origin/main' into gitee

This commit is contained in:
xiaoxian521
2024-01-02 19:52:43 +08:00
162 changed files with 4345 additions and 4437 deletions

View File

@@ -4,7 +4,7 @@ import pkg from "./package.json";
import { warpperEnv } from "./build";
import { getPluginsList } from "./build/plugins";
import { include, exclude } from "./build/optimize";
import { UserConfigExport, ConfigEnv, loadEnv } from "vite";
import { type UserConfigExport, type ConfigEnv, loadEnv } from "vite";
/** 当前执行node命令时文件夹的地址工作目录 */
const root: string = process.cwd();
@@ -26,7 +26,7 @@ const __APP_INFO__ = {
lastBuildTime: dayjs(new Date()).format("YYYY-MM-DD HH:mm:ss")
};
export default ({ command, mode }: ConfigEnv): UserConfigExport => {
export default ({ mode }: ConfigEnv): UserConfigExport => {
const { VITE_CDN, VITE_PORT, VITE_COMPRESSION, VITE_PUBLIC_PATH } =
warpperEnv(loadEnv(mode, root));
return {
@@ -37,22 +37,25 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => {
},
// 服务端渲染
server: {
// 是否开启 https
https: false,
// 端口号
port: VITE_PORT,
host: "0.0.0.0",
// 本地跨域代理 https://cn.vitejs.dev/config/server-options.html#server-proxy
proxy: {}
proxy: {},
// 预热文件以提前转换和缓存结果,降低启动期间的初始页面加载时长并防止转换瀑布
warmup: {
clientFiles: ["./index.html", "./src/{views,components}/*"]
}
},
plugins: getPluginsList(command, VITE_CDN, VITE_COMPRESSION),
plugins: getPluginsList(VITE_CDN, VITE_COMPRESSION),
// https://cn.vitejs.dev/config/dep-optimization-options.html#dep-optimization-options
optimizeDeps: {
include,
exclude
},
build: {
assetsInlineLimit: 0,
// https://cn.vitejs.dev/guide/build.html#browser-compatibility
target: "es2015",
sourcemap: false,
// 消除打包大小超过500kb警告
chunkSizeWarningLimit: 4000,
@@ -62,9 +65,9 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => {
},
// 静态资源分类打包
output: {
chunkFileNames: "static/js/[name].js",
entryFileNames: "static/js/[name].js",
assetFileNames: "static/[ext]/[name].[ext]"
chunkFileNames: "static/js/[name]-[hash].js",
entryFileNames: "static/js/[name]-[hash].js",
assetFileNames: "static/[ext]/[name]-[hash].[ext]"
}
}
},
@@ -73,4 +76,4 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => {
__APP_INFO__: JSON.stringify(__APP_INFO__)
}
};
};
};