35 lines
879 B
JavaScript
35 lines
879 B
JavaScript
|
import { fileURLToPath, URL } from 'node:url'
|
||
|
|
||
|
import { defineConfig } from 'vite'
|
||
|
import vue from '@vitejs/plugin-vue'
|
||
|
import AutoImport from 'unplugin-auto-import/vite'
|
||
|
import Components from 'unplugin-vue-components/vite'
|
||
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [vue(), AutoImport({
|
||
|
resolvers: [ElementPlusResolver()],
|
||
|
}), Components({
|
||
|
resolvers: [ElementPlusResolver()],
|
||
|
}),],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||
|
}
|
||
|
},
|
||
|
server: {
|
||
|
proxy: { // 代理
|
||
|
'/api': {
|
||
|
target: 'http://localhost:8000',
|
||
|
changeOrigin: true,
|
||
|
rewrite: (path) => path.replace(/^\/api/, '')
|
||
|
},
|
||
|
'/socket.io': {
|
||
|
target: 'ws://localhost:5000',
|
||
|
ws: true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|