You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
4.8 KiB
146 lines
4.8 KiB
import { resolve } from "path";
|
|
import { UserConfigExport, ConfigEnv, loadEnv } from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
|
import { warpperEnv } from "./build/utils";
|
|
import { createProxy } from "./build/proxy";
|
|
import { viteMockServe } from "vite-plugin-mock";
|
|
import svgLoader from "vite-svg-loader";
|
|
import ElementPlus from "unplugin-element-plus/vite";
|
|
import themePreprocessorPlugin from "@zougt/vite-plugin-theme-preprocessor";
|
|
|
|
const pathResolve = (dir: string): string => {
|
|
return resolve(__dirname, ".", dir);
|
|
};
|
|
|
|
const alias: Record<string, string> = {
|
|
"/@": pathResolve("src"),
|
|
"@build": pathResolve("build"),
|
|
//解决开发环境下的警告 You are running the esm-bundler build of vue-i18n. It is recommended to configure your bundler to explicitly replace feature flag globals with boolean literals to get proper tree-shaking in the final bundle.
|
|
"vue-i18n": "vue-i18n/dist/vue-i18n.cjs.js"
|
|
};
|
|
|
|
const root: string = process.cwd();
|
|
|
|
export default ({ command, mode }: ConfigEnv): UserConfigExport => {
|
|
const { VITE_PORT, VITE_PUBLIC_PATH, VITE_PROXY } = warpperEnv(
|
|
loadEnv(mode, root)
|
|
);
|
|
const prodMock = true;
|
|
return {
|
|
/**
|
|
* 基本公共路径
|
|
* /manages/ 可根据项目部署域名的后缀自行填写(全局搜/manages/替换)
|
|
* @default '/'
|
|
*/
|
|
base:
|
|
process.env.NODE_ENV === "production" ? "/manages/" : VITE_PUBLIC_PATH,
|
|
root,
|
|
resolve: {
|
|
alias
|
|
},
|
|
// 服务端渲染
|
|
server: {
|
|
// 是否开启 https
|
|
https: false,
|
|
/**
|
|
* 端口号
|
|
* @default 3000
|
|
*/
|
|
port: VITE_PORT,
|
|
host: "0.0.0.0",
|
|
// 本地跨域代理
|
|
proxy: createProxy(VITE_PROXY)
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
vueJsx(),
|
|
themePreprocessorPlugin({
|
|
scss: {
|
|
multipleScopeVars: [
|
|
{
|
|
scopeName: "layout-theme-default",
|
|
path: pathResolve("src/layout/theme/default-vars.scss")
|
|
},
|
|
{
|
|
scopeName: "layout-theme-light",
|
|
path: pathResolve("src/layout/theme/light-vars.scss")
|
|
},
|
|
{
|
|
scopeName: "layout-theme-dusk",
|
|
path: pathResolve("src/layout/theme/dusk-vars.scss")
|
|
},
|
|
{
|
|
scopeName: "layout-theme-volcano",
|
|
path: pathResolve("src/layout/theme/volcano-vars.scss")
|
|
},
|
|
{
|
|
scopeName: "layout-theme-yellow",
|
|
path: pathResolve("src/layout/theme/yellow-vars.scss")
|
|
},
|
|
{
|
|
scopeName: "layout-theme-mingQing",
|
|
path: pathResolve("src/layout/theme/mingQing-vars.scss")
|
|
},
|
|
{
|
|
scopeName: "layout-theme-auroraGreen",
|
|
path: pathResolve("src/layout/theme/auroraGreen-vars.scss")
|
|
},
|
|
{
|
|
scopeName: "layout-theme-pink",
|
|
path: pathResolve("src/layout/theme/pink-vars.scss")
|
|
},
|
|
{
|
|
scopeName: "layout-theme-saucePurple",
|
|
path: pathResolve("src/layout/theme/saucePurple-vars.scss")
|
|
}
|
|
],
|
|
// 默认取 multipleScopeVars[0].scopeName
|
|
defaultScopeName: "",
|
|
// 在生产模式是否抽取独立的主题css文件,extract为true以下属性有效
|
|
extract: true,
|
|
// 独立主题css文件的输出路径,默认取 viteConfig.build.assetsDir 相对于 (viteConfig.build.outDir)
|
|
outputDir: "",
|
|
// 会选取defaultScopeName对应的主题css文件在html添加link
|
|
themeLinkTagId: "head",
|
|
// "head"||"head-prepend" || "body" ||"body-prepend"
|
|
themeLinkTagInjectTo: "head",
|
|
// 是否对抽取的css文件内对应scopeName的权重类名移除
|
|
removeCssScopeName: false,
|
|
// 可以自定义css文件名称的函数
|
|
customThemeCssFileName: scopeName => scopeName
|
|
}
|
|
}),
|
|
svgLoader(),
|
|
ElementPlus({}),
|
|
viteMockServe({
|
|
mockPath: "mock",
|
|
localEnabled: command === "serve",
|
|
prodEnabled: command !== "serve" && prodMock,
|
|
injectCode: `
|
|
import { setupProdMockServer } from './mockProdServer';
|
|
setupProdMockServer();
|
|
`,
|
|
logger: true
|
|
})
|
|
],
|
|
optimizeDeps: {
|
|
include: [
|
|
"element-plus/lib/locale/lang/zh-cn",
|
|
"element-plus/lib/locale/lang/en"
|
|
],
|
|
exclude: ["@zougt/vite-plugin-theme-preprocessor/dist/browser-utils"]
|
|
},
|
|
build: {
|
|
// @ts-ignore
|
|
sourcemap: false,
|
|
brotliSize: false,
|
|
// 消除打包大小超过500kb警告
|
|
chunkSizeWarningLimit: 2000,
|
|
minify: false
|
|
},
|
|
define: {
|
|
__INTLIFY_PROD_DEVTOOLS__: false
|
|
}
|
|
};
|
|
};
|