代码拉取完成,页面将自动刷新
同步操作将从 yongkang/PureChat 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import process from "node:process";
import { URL, fileURLToPath } from "node:url";
import { defineConfig, loadEnv } from "vite";
import { setupVitePlugins, viteDefine } from "./build";
export default defineConfig(({ mode }) => {
const viteEnv = loadEnv(mode, process.cwd());
return {
base: viteEnv.VITE_BASE_URL,
define: viteDefine,
resolve: {
/** 设置别名 */
alias: {
"~": fileURLToPath(new URL("./", import.meta.url)),
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
server: {
// 端口号
port: viteEnv.VITE_PORT,
open: true,
host: "0.0.0.0",
// 本地跨域代理 https://cn.vitejs.dev/config/server-options.html#server-proxy
proxy: {},
// 预热文件以提前转换和缓存结果,降低启动期间的初始页面加载时长并防止转换瀑布
warmup: {
clientFiles: ["./index.html", "./src/{views,components}/*"],
},
},
plugins: setupVitePlugins(viteEnv),
css: {
preprocessorOptions: {
scss: {
additionalData: `@use "./src/styles/mixin.scss" as *;`,
},
},
},
// https://cn.vitejs.dev/config/dep-optimization-options.html#dep-optimization-options
optimizeDeps: {
// include,
// exclude,
},
build: {
// https://cn.vitejs.dev/guide/build.html#browser-compatibility
// target: "es2015",
// 生成生产源映射
sourcemap: viteEnv.VITE_SOURCE_MAP === "Y",
// 消除打包大小超过500kb警告
chunkSizeWarningLimit: 4000,
rollupOptions: {
input: {
index: fileURLToPath(new URL("./index.html", import.meta.url)),
},
// 静态资源分类打包
output: {
chunkFileNames: "static/js/[name]-[hash].js",
entryFileNames: "static/js/[name]-[hash].js",
// #https://cn.rollupjs.org/configuration-options/#output-assetfilenames
assetFileNames: "static/[ext]/[name]-[hash].[ext]",
// 手动分包 #https://cn.rollupjs.org/configuration-options/#output-manualchunks
manualChunks(id) {
if (id.includes("node_modules")) return "vendor";
},
},
},
// 启用/ 禁用 gzip 压缩大小报告
reportCompressedSize: false,
},
};
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。