vite.config.ts 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. import { resolve } from "path";
  2. import { UserConfigExport, ConfigEnv } from "vite";
  3. import vue from "@vitejs/plugin-vue";
  4. import vueJsx from "@vitejs/plugin-vue-jsx";
  5. import { loadEnv } from "./build/utils";
  6. import { createProxy } from "./build/proxy";
  7. import { viteMockServe } from "vite-plugin-mock";
  8. import styleImport from "vite-plugin-style-import";
  9. const pathResolve = (dir: string): any => {
  10. return resolve(__dirname, ".", dir);
  11. };
  12. const { VITE_PORT, VITE_PUBLIC_PATH, VITE_PROXY } = loadEnv();
  13. const alias: Record<string, string> = {
  14. "/@": pathResolve("src"),
  15. //解决开发环境下的警告 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.
  16. "vue-i18n": "vue-i18n/dist/vue-i18n.cjs.js"
  17. };
  18. const root: string = process.cwd();
  19. export default ({ command }: ConfigEnv): UserConfigExport => {
  20. const prodMock = true;
  21. return {
  22. /**
  23. * 基本公共路径
  24. * /manages/ 可根据项目部署域名的后缀自行填写(全局搜/manages/替换)
  25. * @default '/'
  26. */
  27. base:
  28. process.env.NODE_ENV === "production" ? "/manages/" : VITE_PUBLIC_PATH,
  29. root,
  30. resolve: {
  31. alias
  32. },
  33. // 服务端渲染
  34. server: {
  35. // 是否开启 https
  36. https: false,
  37. /**
  38. * 端口号
  39. * @default 3000
  40. */
  41. port: VITE_PORT,
  42. // 本地跨域代理
  43. proxy: createProxy(VITE_PROXY)
  44. },
  45. plugins: [
  46. vue(),
  47. vueJsx(),
  48. styleImport({
  49. libs: [
  50. // 按需加载element-plus
  51. {
  52. libraryName: "element-plus",
  53. esModule: true,
  54. ensureStyleFile: true,
  55. resolveStyle: name => {
  56. return `element-plus/lib/theme-chalk/${name}.css`;
  57. },
  58. resolveComponent: name => {
  59. return `element-plus/lib/${name}`;
  60. }
  61. },
  62. // 按需加载vxe-table
  63. {
  64. libraryName: "vxe-table",
  65. esModule: true,
  66. resolveComponent: name => `vxe-table/es/${name}`,
  67. resolveStyle: name => `vxe-table/es/${name}/style.css`
  68. }
  69. ]
  70. }),
  71. viteMockServe({
  72. mockPath: "mock",
  73. localEnabled: command === "serve",
  74. prodEnabled: command !== "serve" && prodMock,
  75. injectCode: `
  76. import { setupProdMockServer } from './mockProdServer';
  77. setupProdMockServer();
  78. `,
  79. logger: true
  80. })
  81. ],
  82. optimizeDeps: {
  83. include: [
  84. "element-plus/lib/locale/lang/zh-cn",
  85. "element-plus/lib/locale/lang/en",
  86. "vxe-table/lib/locale/lang/zh-CN",
  87. "vxe-table/lib/locale/lang/en-US"
  88. ]
  89. },
  90. build: {
  91. brotliSize: false,
  92. // 消除打包大小超过500kb警告
  93. chunkSizeWarningLimit: 2000
  94. },
  95. define: {
  96. __INTLIFY_PROD_DEVTOOLS__: false
  97. }
  98. };
  99. };