| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | import { defineConfig } from 'vite';import vue from '@vitejs/plugin-vue';import vueJsx from '@vitejs/plugin-vue-jsx';import Components from 'unplugin-vue-components/vite';import { VantResolver } from 'unplugin-vue-components/resolvers';import viteESLint from 'vite-plugin-eslint';import legacy from '@vitejs/plugin-legacy';// eslint-disable-next-line @typescript-eslint/no-var-requiresconst path = require('path');function resolve(dir: string) {  return path.join(__dirname, dir);}// https://vitejs.dev/config/// https://github.com/vitejs/vite/issues/1930 .env// const proxyUrl = 'https://test.lexiaoya.cn/';// const proxyUrl = 'https://kt.colexiu.com/';// const proxyUrl = 'http://192.168.3.143:7093/';const proxyUrl = 'https://dev.kt.colexiu.com/';export default defineConfig({  base: './',  plugins: [    legacy({      targets: ['chrome 52'],      additionalLegacyPolyfills: ['regenerator-runtime/runtime'],      renderLegacyChunks: true,      polyfills: [        'es.symbol',        'es.promise',        'es.promise.finally',        'es/map',        'es/set',        'es.array.filter',        'es.array.for-each',        'es.array.flat-map',        'es.object.define-properties',        'es.object.define-property',        'es.object.get-own-property-descriptor',        'es.object.get-own-property-descriptors',        'es.object.keys',        'es.object.to-string',        'web.dom-collections.for-each',        'esnext.global-this',        'esnext.string.match-all'      ]    }),    vue(),    vueJsx(),    viteESLint(),    Components({      resolvers: [VantResolver()]    })  ],  build: {    target: 'es2015'  },  resolve: {    alias: {      '@': resolve('./src'),      '@common': resolve('./src/common'),      '@components': resolve('./src/components'),      '@store': resolve('./src/store'),      '@views': resolve('./src/views')    }  },  server: {    host: '0.0.0.0',    port: 9002,    strictPort: true,    cors: true,    https: false,    proxy: {      '/edu-oauth': {        target: proxyUrl,        changeOrigin: true      },      '/edu-app': {        target: proxyUrl,        changeOrigin: true      }    }  }});
 |