33 lines
668 B
JavaScript
33 lines
668 B
JavaScript
import {fileURLToPath, URL} from 'node:url'
|
|
|
|
import {defineConfig} from 'vite'
|
|
import legacy from '@vitejs/plugin-legacy'
|
|
import vue2 from '@vitejs/plugin-vue2'
|
|
import vue2Jsx from '@vitejs/plugin-vue2-jsx'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue2(),
|
|
vue2Jsx(),
|
|
legacy({
|
|
targets: ['ie >= 11'],
|
|
additionalLegacyPolyfills: ['regenerator-runtime/runtime']
|
|
})
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
server: {
|
|
port: 9000,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://10.0.97.209',
|
|
changeOrigin: true,
|
|
}
|
|
}
|
|
}
|
|
})
|