vite.config.ts 2.8 KB

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