You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
596 B
29 lines
596 B
1 month ago
|
import { fileURLToPath, URL } from 'node:url'
|
||
|
|
||
|
import { defineConfig } from 'vite'
|
||
|
import vue from '@vitejs/plugin-vue'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||
|
}
|
||
|
},
|
||
|
server: {
|
||
|
proxy: {
|
||
|
//获取路径当中包含了/api的请求
|
||
|
'/api': {
|
||
|
//后台服务所在的源
|
||
|
target: 'http://localhost:5678',
|
||
|
//修改源
|
||
|
changeOrigin: true,
|
||
|
rewrite: (path) => path.replace(/^\/api/, '')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|