plugins.ts 4.4 KB

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