vite.config.ts 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. import { defineConfig } from 'vite';
  2. import vue from '@vitejs/plugin-vue';
  3. import vueJsx from '@vitejs/plugin-vue-jsx';
  4. import Components from 'unplugin-vue-components/vite';
  5. import { NaiveUiResolver } from 'unplugin-vue-components/resolvers';
  6. // import viteESLint from 'vite-plugin-eslint';
  7. import legacyPlugin from '@vitejs/plugin-legacy';
  8. import { VitePWA } from 'vite-plugin-pwa';
  9. // 引入等比适配插件
  10. import px2rem from 'postcss-px2rem';
  11. import versionUpdatePlugin from './src/plugins/version';
  12. // 配置基本大小
  13. const postcss = px2rem({
  14. // 基准大小 baseSize,需要和rem.js中相同
  15. remUnit: 16
  16. });
  17. // eslint-disable-next-line @typescript-eslint/no-var-requires
  18. const path = require('path');
  19. function resolve(dir: string) {
  20. return path.join(__dirname, dir);
  21. }
  22. // https://vitejs.dev/config/
  23. // https://github.com/vitejs/vite/issues/1930 .env
  24. const proxyUrl = 'https://dev.kt.colexiu.com/';
  25. // const proxyUrl = 'https://test.kt.colexiu.com';
  26. // const proxyUrl = 'http://192.168.3.14:7989';
  27. const now = new Date().getTime();
  28. export default defineConfig(() => {
  29. return {
  30. base: './',
  31. plugins: [
  32. vue(),
  33. vueJsx(),
  34. // viteESLint(),
  35. Components({
  36. dts: true,
  37. resolvers: [NaiveUiResolver()]
  38. }),
  39. legacyPlugin({
  40. targets: ['defaults', 'not IE 11'],
  41. additionalLegacyPolyfills: ['regenerator-runtime/runtime'],
  42. renderLegacyChunks: true,
  43. polyfills: [
  44. 'es.symbol',
  45. 'es.promise',
  46. 'es.promise.finally',
  47. 'es/map',
  48. 'es/set',
  49. 'es.array.filter',
  50. 'es.array.for-each',
  51. 'es.array.flat-map',
  52. 'es.object.define-properties',
  53. 'es.object.define-property',
  54. 'es.object.get-own-property-descriptor',
  55. 'es.object.get-own-property-descriptors',
  56. 'es.object.keys',
  57. 'es.object.to-string',
  58. 'web.dom-collections.for-each',
  59. 'esnext.global-this',
  60. 'esnext.string.match-all'
  61. ]
  62. }),
  63. VitePWA({
  64. injectRegister: 'auto',
  65. registerType: 'autoUpdate',
  66. includeAssets: ['./logo.png'],
  67. workbox: {
  68. skipWaiting: true,
  69. clientsClaim: true,
  70. runtimeCaching: []
  71. // runtimeCaching: [
  72. // {
  73. // urlPattern: /(.*?)\.(js|css|ts|tsx|html)/, // js /css /ts静态资源缓存
  74. // handler: 'NetworkOnly',
  75. // options: {
  76. // cacheName: 'js-css-cache'
  77. // }
  78. // },
  79. // {
  80. // urlPattern: /.*\.html.*/,
  81. // handler: 'NetworkOnly',
  82. // options: {
  83. // cacheName: 'wisbayar-html',
  84. // expiration: {
  85. // maxEntries: 20,
  86. // maxAgeSeconds: 24 * 60 * 60
  87. // },
  88. // cacheableResponse: {
  89. // statuses: [200]
  90. // }
  91. // }
  92. // }
  93. // ]
  94. },
  95. manifest: {
  96. name: '酷乐秀-音乐数字课堂',
  97. short_name: '音乐数字课堂',
  98. theme_color: '#E8EAED',
  99. display: 'fullscreen',
  100. icons: [
  101. {
  102. src: './logo.png',
  103. sizes: '192x192',
  104. type: 'image/png'
  105. },
  106. {
  107. src: './logo.png',
  108. sizes: '512x512',
  109. type: 'image/png'
  110. },
  111. {
  112. src: './logo.png',
  113. sizes: '512x512',
  114. type: 'image/png',
  115. purpose: 'any maskable'
  116. }
  117. ],
  118. prefer_related_applications: false,
  119. related_applications: [
  120. {
  121. platform: 'webapp',
  122. id: '1.0.0',
  123. url: './manifest.webmanifest'
  124. }
  125. ]
  126. },
  127. devOptions: {
  128. enabled: true
  129. }
  130. }),
  131. versionUpdatePlugin({
  132. version: now
  133. })
  134. ],
  135. define: {
  136. // 定义全局变量
  137. __APP_VERSION__: now
  138. },
  139. build: {
  140. target: 'es2015',
  141. rollupOptions: {
  142. output: {
  143. entryFileNames: `[name]-[hash]-${now}.js`,
  144. chunkFileNames: `[name]-[hash]-${now}.js`,
  145. assetFileNames: `[name]-[hash].[ext]`
  146. }
  147. }
  148. },
  149. resolve: {
  150. alias: {
  151. '@': resolve('./src'),
  152. '@common': resolve('./src/common'),
  153. '@components': resolve('./src/components'),
  154. '@store': resolve('./src/store'),
  155. '@views': resolve('./src/views')
  156. }
  157. },
  158. server: {
  159. host: '0.0.0.0',
  160. port: 5002,
  161. strictPort: true,
  162. cors: true,
  163. https: false,
  164. proxy: {
  165. '/edu-app': {
  166. target: proxyUrl,
  167. changeOrigin: true
  168. }
  169. }
  170. }
  171. };
  172. });