plugins.ts 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. import { cdn } from "./cdn";
  2. import { resolve } from "path";
  3. import vue from "@vitejs/plugin-vue";
  4. import { viteBuildInfo } from "./info";
  5. import svgLoader from "vite-svg-loader";
  6. import legacy from "@vitejs/plugin-legacy";
  7. import vueJsx from "@vitejs/plugin-vue-jsx";
  8. import VueMacros from "unplugin-vue-macros/vite";
  9. import { viteMockServe } from "vite-plugin-mock";
  10. import { configCompressPlugin } from "./compress";
  11. import VueI18n from "@intlify/vite-plugin-vue-i18n";
  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 "../src/layout/theme";
  16. export function getPluginsList(
  17. command: string,
  18. VITE_LEGACY: boolean,
  19. VITE_CDN: boolean,
  20. VITE_COMPRESSION: ViteCompression
  21. ) {
  22. const prodMock = true;
  23. const lifecycle = process.env.npm_lifecycle_event;
  24. return [
  25. vue(),
  26. // https://github.com/intlify/bundle-tools/tree/main/packages/vite-plugin-vue-i18n
  27. VueI18n({
  28. runtimeOnly: true,
  29. compositionOnly: true,
  30. include: [resolve("locales/**")]
  31. }),
  32. // jsx、tsx语法支持
  33. vueJsx(),
  34. VITE_CDN ? cdn : null,
  35. configCompressPlugin(VITE_COMPRESSION),
  36. VueMacros(),
  37. // 线上环境删除console
  38. removeConsole({ external: ["src/assets/iconfont/iconfont.js"] }),
  39. viteBuildInfo(),
  40. // 自定义主题
  41. themePreprocessorPlugin({
  42. scss: {
  43. multipleScopeVars: genScssMultipleScopeVars(),
  44. // 在生产模式是否抽取独立的主题css文件,extract为true以下属性有效
  45. extract: true,
  46. // 会选取defaultScopeName对应的主题css文件在html添加link
  47. themeLinkTagId: "head",
  48. // "head"||"head-prepend" || "body" ||"body-prepend"
  49. themeLinkTagInjectTo: "head",
  50. // 是否对抽取的css文件内对应scopeName的权重类名移除
  51. removeCssScopeName: false
  52. }
  53. }),
  54. // svg组件化支持
  55. svgLoader(),
  56. // mock支持
  57. viteMockServe({
  58. mockPath: "mock",
  59. localEnabled: command === "serve",
  60. prodEnabled: command !== "serve" && prodMock,
  61. injectCode: `
  62. import { setupProdMockServer } from './mockProdServer';
  63. setupProdMockServer();
  64. `,
  65. logger: false
  66. }),
  67. // 是否为打包后的文件提供传统浏览器兼容性支持
  68. VITE_LEGACY
  69. ? legacy({
  70. targets: ["ie >= 11"],
  71. additionalLegacyPolyfills: ["regenerator-runtime/runtime"]
  72. })
  73. : null,
  74. // 打包分析
  75. lifecycle === "report"
  76. ? visualizer({ open: true, brotliSize: true, filename: "report.html" })
  77. : null
  78. ];
  79. }