plugins.ts 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 styleImport from "vite-plugin-style-import";
  10. import VueI18n from "@intlify/vite-plugin-vue-i18n";
  11. // import ElementPlus from "unplugin-element-plus/vite";
  12. import { visualizer } from "rollup-plugin-visualizer";
  13. import removeConsole from "vite-plugin-remove-console";
  14. import themePreprocessorPlugin from "@pureadmin/theme";
  15. import { genScssMultipleScopeVars } from "/@/layout/theme";
  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. // 自定义主题
  34. themePreprocessorPlugin({
  35. scss: {
  36. multipleScopeVars: genScssMultipleScopeVars(),
  37. // 默认取 multipleScopeVars[0].scopeName
  38. defaultScopeName: "",
  39. // 在生产模式是否抽取独立的主题css文件,extract为true以下属性有效
  40. extract: true,
  41. // 独立主题css文件的输出路径,默认取 viteConfig.build.assetsDir 相对于 (viteConfig.build.outDir)
  42. outputDir: "",
  43. // 会选取defaultScopeName对应的主题css文件在html添加link
  44. themeLinkTagId: "head",
  45. // "head"||"head-prepend" || "body" ||"body-prepend"
  46. themeLinkTagInjectTo: "head",
  47. // 是否对抽取的css文件内对应scopeName的权重类名移除
  48. removeCssScopeName: false,
  49. // 可以自定义css文件名称的函数
  50. customThemeCssFileName: scopeName => scopeName
  51. }
  52. }),
  53. // svg组件化支持
  54. svgLoader(),
  55. // 按需加载vxe-table
  56. styleImport({
  57. libs: [
  58. {
  59. libraryName: "vxe-table",
  60. esModule: true,
  61. ensureStyleFile: true,
  62. resolveComponent: name => `vxe-table/es/${name}`,
  63. resolveStyle: name => `vxe-table/es/${name}/style.css`
  64. }
  65. ]
  66. }),
  67. // ElementPlus({}),
  68. // mock支持
  69. viteMockServe({
  70. mockPath: "mock",
  71. localEnabled: command === "serve",
  72. prodEnabled: command !== "serve" && prodMock,
  73. injectCode: `
  74. import { setupProdMockServer } from './mockProdServer';
  75. setupProdMockServer();
  76. `,
  77. logger: true
  78. }),
  79. // 是否为打包后的文件提供传统浏览器兼容性支持
  80. VITE_LEGACY
  81. ? legacy({
  82. targets: ["ie >= 11"],
  83. additionalLegacyPolyfills: ["regenerator-runtime/runtime"]
  84. })
  85. : null,
  86. // 打包分析
  87. lifecycle === "report"
  88. ? visualizer({ open: true, brotliSize: true, filename: "report.html" })
  89. : null
  90. ];
  91. }