起因:误建在 yudao master 快照(vite 8.0.10 + rolldown@1.0.0-rc.17 前沿不稳, mini-desktop 构建 native binding 崩;另叠 pnpm10+ 拦原生构建脚本 esbuild)。 重做到稳定发布 tag v2026.01:vite 5.1.4 / vue 3.5.12 / element-plus 2.11.1。 - 保留 wanxiang 5 个 MVP 运营页(review/featured/dashboard/adSlot/withdraw) + 6 个 admin-api 模块(ad/trade/project/feed/telemetry/mock)+ 路由/.env 接线不变 - build:local 改 node 直跑 vite(绕 pnpm-run 预检),max-old-space 降至 4096 - 注:本次为基线切换提交,构建绿待 mini-desktop(15G)独立验证,本机 5.8G 跑前端 OOM Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
89 lines
3.2 KiB
TypeScript
89 lines
3.2 KiB
TypeScript
import {resolve} from 'path'
|
||
import type {ConfigEnv, UserConfig} from 'vite'
|
||
import {loadEnv} from 'vite'
|
||
import {createVitePlugins} from './build/vite'
|
||
import {exclude, include} from "./build/vite/optimize"
|
||
// 当前执行node命令时文件夹的地址(工作目录)
|
||
const root = process.cwd()
|
||
|
||
// 路径查找
|
||
function pathResolve(dir: string) {
|
||
return resolve(root, '.', dir)
|
||
}
|
||
|
||
// https://vitejs.dev/config/
|
||
export default ({command, mode}: ConfigEnv): UserConfig => {
|
||
let env = {} as any
|
||
const isBuild = command === 'build'
|
||
if (!isBuild) {
|
||
env = loadEnv((process.argv[3] === '--mode' ? process.argv[4] : process.argv[3]), root)
|
||
} else {
|
||
env = loadEnv(mode, root)
|
||
}
|
||
return {
|
||
base: env.VITE_BASE_PATH,
|
||
root: root,
|
||
// 服务端渲染
|
||
server: {
|
||
port: env.VITE_PORT, // 端口号
|
||
host: "0.0.0.0",
|
||
open: env.VITE_OPEN === 'true',
|
||
// 本地跨域代理. 目前注释的原因:暂时没有用途,server 端已经支持跨域
|
||
// proxy: {
|
||
// ['/admin-api']: {
|
||
// target: env.VITE_BASE_URL,
|
||
// ws: false,
|
||
// changeOrigin: true,
|
||
// rewrite: (path) => path.replace(new RegExp(`^/admin-api`), ''),
|
||
// },
|
||
// },
|
||
},
|
||
// 项目使用的vite插件。 单独提取到build/vite/plugin中管理
|
||
plugins: createVitePlugins(),
|
||
css: {
|
||
preprocessorOptions: {
|
||
scss: {
|
||
additionalData: '@use "@/styles/variables.scss" as *;',
|
||
javascriptEnabled: true,
|
||
silenceDeprecations: ["legacy-js-api"], // 参考自 https://stackoverflow.com/questions/78997907/the-legacy-js-api-is-deprecated-and-will-be-removed-in-dart-sass-2-0-0
|
||
}
|
||
}
|
||
},
|
||
resolve: {
|
||
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.scss', '.css'],
|
||
alias: [
|
||
{
|
||
find: 'vue-i18n',
|
||
replacement: 'vue-i18n/dist/vue-i18n.cjs.js'
|
||
},
|
||
{
|
||
find: /\@\//,
|
||
replacement: `${pathResolve('src')}/`
|
||
}
|
||
]
|
||
},
|
||
build: {
|
||
minify: 'terser',
|
||
outDir: env.VITE_OUT_DIR || 'dist',
|
||
sourcemap: env.VITE_SOURCEMAP === 'true' ? 'inline' : false,
|
||
// brotliSize: false,
|
||
terserOptions: {
|
||
compress: {
|
||
drop_debugger: env.VITE_DROP_DEBUGGER === 'true',
|
||
drop_console: env.VITE_DROP_CONSOLE === 'true'
|
||
}
|
||
},
|
||
rollupOptions: {
|
||
output: {
|
||
manualChunks: {
|
||
echarts: ['echarts'], // 将 echarts 单独打包,参考 https://gitee.com/yudaocode/yudao-ui-admin-vue3/issues/IAB1SX 讨论
|
||
'form-create': ['@form-create/element-ui'], // 参考 https://github.com/yudaocode/yudao-ui-admin-vue3/issues/148 讨论
|
||
'form-designer': ['@form-create/designer'],
|
||
}
|
||
},
|
||
},
|
||
},
|
||
optimizeDeps: {include, exclude}
|
||
}
|
||
}
|