vite.config.ts 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import topLevelAwait from 'vite-plugin-top-level-await'
  4. import { resolve } from 'path'
  5. import viteCompression from 'vite-plugin-compression';//Gzip
  6. import { visualizer } from "rollup-plugin-visualizer";
  7. import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // 【svg-icons相关】
  8. import VitePluginHtmlEnv from 'vite-plugin-html-env'
  9. import postcsspxtoviewport from 'postcss-px-to-viewport'
  10. const time = new Date().getTime()
  11. export default defineConfig({
  12. define: {
  13. 'process.env': process.env
  14. },
  15. plugins: [
  16. vue(),
  17. viteCompression(),
  18. VitePluginHtmlEnv(),
  19. visualizer(),
  20. createSvgIconsPlugin({
  21. // 指定需要缓存的图标文件夹
  22. iconDirs: [resolve(process.cwd(), 'src/assets/svg')],
  23. // 指定symbolId格式
  24. symbolId: 'icon-[dir]-[name]',
  25. // svgoOptions: {
  26. // plugins: [
  27. // {
  28. // name: 'removeAttrs',
  29. // params: {
  30. // attrs: ['class', 'data-name', 'fill', 'stroke']
  31. // }
  32. // }
  33. // ]
  34. // }
  35. }),
  36. topLevelAwait({
  37. promiseExportName: '__tla',
  38. promiseImportName: i => `__tla_${i}`
  39. })
  40. ],
  41. base: '/smart-search-web/',
  42. resolve: {
  43. alias: {
  44. '@': resolve(__dirname, 'src'),
  45. },
  46. },
  47. server: {
  48. port: 3853,
  49. host: '0.0.0.0',
  50. open: true,
  51. strictPort: false,
  52. proxy: {
  53. '/ssw-api/api': {
  54. // target: 'http://127.0.0.1:4001/',
  55. target: 'http://10.110.45.26:18069/',
  56. // target: 'http://8.130.72.63:18068/',
  57. changeOrigin: true,
  58. rewrite: (path) => {
  59. // return path.replace(/^\/ssw-api\/api/, '')
  60. return path
  61. }
  62. },
  63. '/ws-api': {
  64. // target: 'ws://8.130.72.63:18073/',
  65. target: 'ws://10.110.45.26:18069/ws-api',
  66. ws: true,
  67. changeOrigin: true,
  68. rewrite: path => {
  69. return path.replace(/^\/ws-api/, '')
  70. }
  71. },
  72. }
  73. },
  74. css: {
  75. postcss: {
  76. plugins: [
  77. postcsspxtoviewport({
  78. unitToConvert: 'px',
  79. viewportWidth: 1920,
  80. unitPrecision: 5, // 单位转换后保留的精度
  81. propList: ['*'], // 能转化为vw的属性列表
  82. viewportUnit: 'vw', // 希望使用的视口单位
  83. fontViewportUnit: 'vw', // 字体使用的视口单位
  84. selectorBlackList: ['ignore-'], // 需要忽略的CSS选择器,不会转为视口单位,使用原有的px等单位。
  85. minPixelValue: 1, // 设置最小的转换数值,如果为1的话,只有大于1的值会被转换
  86. mediaQuery: true, // 媒体查询里的单位是否需要转换单位
  87. replace: true, // 是否直接更换属性值,而不添加备用属性
  88. exclude: [], // 忽略某些文件夹下的文件或特定文件,例如 'node_modules' 下的文件
  89. include: [], // 如果设置了include,那将只有匹配到的文件才会被转换
  90. landscape: false, // 是否添加根据 landscapeWidth 生成的媒体查询条件 @media (orientation: landscape)
  91. landscapeUnit: 'vw', // 横屏时使用的单位
  92. landscapeWidth: 1628, // 横屏时使用的视口宽度
  93. }),
  94. ]
  95. }
  96. },
  97. build: {
  98. outDir: "smart-search-web",
  99. rollupOptions: {//分包优化
  100. output: {
  101. manualChunks(id) {
  102. if (id.includes('node_modules')) {
  103. return time + id.toString().split('node_modules/')[1].split('/')[0].toString();
  104. } else {
  105. return time + id.toString();
  106. }
  107. }
  108. }
  109. }
  110. },
  111. publicDir: 'src/out',
  112. optimizeDeps: {
  113. include: []
  114. }
  115. } as any)