vite.config.ts 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. envPrefix: ['VITE_'], // 确保环境变量前缀正确
  42. // base: '/smart-search-web/',
  43. resolve: {
  44. alias: {
  45. '@': resolve(__dirname, 'src'),
  46. },
  47. },
  48. server: {
  49. port: 6699,
  50. host: '0.0.0.0',
  51. open: true,
  52. strictPort: false,
  53. proxy: {
  54. '/mock-api': {
  55. target: 'http://localhost:18061/',
  56. changeOrigin: true,
  57. rewrite: (path) => {
  58. return path.replace(/^\/mock-api/, 'mock-api')
  59. }
  60. },
  61. '/ssw-api/api': {
  62. target: 'http://10.110.45.26:18069/',
  63. // target: 'http://8.130.72.63:18068/',
  64. changeOrigin: true,
  65. rewrite: (path) => {
  66. // return path.replace(/^\/ssw-api\/api/, '')
  67. return path
  68. }
  69. },
  70. '/ws-api': {
  71. // target: 'ws://8.130.72.63:18073/',
  72. target: 'ws://10.110.45.26:18069/ws-api',
  73. ws: true,
  74. changeOrigin: true,
  75. rewrite: path => {
  76. return path.replace(/^\/ws-api/, '')
  77. }
  78. },
  79. }
  80. },
  81. css: {
  82. preprocessorOptions: {
  83. scss: {
  84. api: "modern-compiler" // or 'modern'
  85. }
  86. },
  87. // postcss: {
  88. // plugins: [
  89. // postcsspxtoviewport({
  90. // unitToConvert: 'px',
  91. // viewportWidth: 1920,
  92. // unitPrecision: 5, // 单位转换后保留的精度
  93. // propList: ['*'], // 能转化为vw的属性列表
  94. // viewportUnit: 'vw', // 希望使用的视口单位
  95. // fontViewportUnit: 'vw', // 字体使用的视口单位
  96. // selectorBlackList: ['ignore-'], // 需要忽略的CSS选择器,不会转为视口单位,使用原有的px等单位。
  97. // minPixelValue: 1, // 设置最小的转换数值,如果为1的话,只有大于1的值会被转换
  98. // mediaQuery: true, // 媒体查询里的单位是否需要转换单位
  99. // replace: true, // 是否直接更换属性值,而不添加备用属性
  100. // exclude: [], // 忽略某些文件夹下的文件或特定文件,例如 'node_modules' 下的文件
  101. // include: [], // 如果设置了include,那将只有匹配到的文件才会被转换
  102. // landscape: false, // 是否添加根据 landscapeWidth 生成的媒体查询条件 @media (orientation: landscape)
  103. // landscapeUnit: 'vw', // 横屏时使用的单位
  104. // landscapeWidth: 1628, // 横屏时使用的视口宽度
  105. // }),
  106. // ]
  107. // }
  108. },
  109. build: {
  110. outDir: "sea-warning-web",
  111. rollupOptions: {//分包优化
  112. output: {
  113. manualChunks(id) {
  114. if (id.includes('node_modules')) {
  115. return time + id.toString().split('node_modules/')[1].split('/')[0].toString();
  116. } else {
  117. return time + id.toString();
  118. }
  119. }
  120. }
  121. }
  122. },
  123. publicDir: 'src/out',
  124. optimizeDeps: {
  125. include: []
  126. }
  127. } as any)