plugins.ts 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. import vue from "@vitejs/plugin-vue";
  2. import { viteBuildInfo } from "./info";
  3. import svgLoader from "vite-svg-loader";
  4. import legacy from "@vitejs/plugin-legacy";
  5. import vueJsx from "@vitejs/plugin-vue-jsx";
  6. import WindiCSS from "vite-plugin-windicss";
  7. import { viteMockServe } from "vite-plugin-mock";
  8. import liveReload from "vite-plugin-live-reload";
  9. import styleImport from "vite-plugin-style-import";
  10. import ElementPlus from "unplugin-element-plus/vite";
  11. import { visualizer } from "rollup-plugin-visualizer";
  12. import removeConsole from "vite-plugin-remove-console";
  13. import themePreprocessorPlugin from "@zougt/vite-plugin-theme-preprocessor";
  14. export function getPluginsList(command, VITE_LEGACY) {
  15. const prodMock = true;
  16. const lifecycle = process.env.npm_lifecycle_event;
  17. return [
  18. vue(),
  19. // jsx、tsx语法支持
  20. vueJsx(),
  21. WindiCSS(),
  22. // 线上环境删除console
  23. removeConsole(),
  24. viteBuildInfo(),
  25. // 修改layout文件夹下的文件时自动重载浏览器 解决 https://github.com/xiaoxian521/vue-pure-admin/issues/170
  26. liveReload(["src/layout/**/*", "src/router/**/*"]),
  27. // 自定义主题
  28. themePreprocessorPlugin({
  29. scss: {
  30. multipleScopeVars: [
  31. {
  32. scopeName: "layout-theme-default",
  33. path: "src/layout/theme/default-vars.scss"
  34. },
  35. {
  36. scopeName: "layout-theme-light",
  37. path: "src/layout/theme/light-vars.scss"
  38. },
  39. {
  40. scopeName: "layout-theme-dusk",
  41. path: "src/layout/theme/dusk-vars.scss"
  42. },
  43. {
  44. scopeName: "layout-theme-volcano",
  45. path: "src/layout/theme/volcano-vars.scss"
  46. },
  47. {
  48. scopeName: "layout-theme-yellow",
  49. path: "src/layout/theme/yellow-vars.scss"
  50. },
  51. {
  52. scopeName: "layout-theme-mingQing",
  53. path: "src/layout/theme/mingQing-vars.scss"
  54. },
  55. {
  56. scopeName: "layout-theme-auroraGreen",
  57. path: "src/layout/theme/auroraGreen-vars.scss"
  58. },
  59. {
  60. scopeName: "layout-theme-pink",
  61. path: "src/layout/theme/pink-vars.scss"
  62. },
  63. {
  64. scopeName: "layout-theme-saucePurple",
  65. path: "src/layout/theme/saucePurple-vars.scss"
  66. }
  67. ],
  68. // 默认取 multipleScopeVars[0].scopeName
  69. defaultScopeName: "",
  70. // 在生产模式是否抽取独立的主题css文件,extract为true以下属性有效
  71. extract: true,
  72. // 独立主题css文件的输出路径,默认取 viteConfig.build.assetsDir 相对于 (viteConfig.build.outDir)
  73. outputDir: "",
  74. // 会选取defaultScopeName对应的主题css文件在html添加link
  75. themeLinkTagId: "head",
  76. // "head"||"head-prepend" || "body" ||"body-prepend"
  77. themeLinkTagInjectTo: "head",
  78. // 是否对抽取的css文件内对应scopeName的权重类名移除
  79. removeCssScopeName: false,
  80. // 可以自定义css文件名称的函数
  81. customThemeCssFileName: scopeName => scopeName
  82. }
  83. }),
  84. // svg组件化支持
  85. svgLoader(),
  86. // 按需加载vxe-table
  87. styleImport({
  88. libs: [
  89. {
  90. libraryName: "vxe-table",
  91. esModule: true,
  92. ensureStyleFile: true,
  93. resolveComponent: name => `vxe-table/es/${name}`,
  94. resolveStyle: name => `vxe-table/es/${name}/style.css`
  95. }
  96. ]
  97. }),
  98. ElementPlus({}),
  99. // mock支持
  100. viteMockServe({
  101. mockPath: "mock",
  102. localEnabled: command === "serve",
  103. prodEnabled: command !== "serve" && prodMock,
  104. injectCode: `
  105. import { setupProdMockServer } from './mockProdServer';
  106. setupProdMockServer();
  107. `,
  108. logger: true
  109. }),
  110. // 是否为打包后的文件提供传统浏览器兼容性支持
  111. VITE_LEGACY
  112. ? legacy({
  113. targets: ["ie >= 11"],
  114. additionalLegacyPolyfills: ["regenerator-runtime/runtime"]
  115. })
  116. : null,
  117. // 打包分析
  118. lifecycle === "report"
  119. ? visualizer({ open: true, brotliSize: true, filename: "report.html" })
  120. : null
  121. ];
  122. }