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
659 B
29 lines
659 B
2 weeks ago
|
import { fileURLToPath, URL } from 'node:url'
|
||
|
|
||
|
import { defineConfig } from 'vite'
|
||
|
import vue from '@vitejs/plugin-vue'
|
||
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
||
|
|
||
|
// https://vite.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [vue(), vueJsx()],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
||
|
},
|
||
|
},
|
||
|
server: {
|
||
|
proxy: {
|
||
|
//获取路径当中包含了/api的请求
|
||
|
'/api': {
|
||
|
//后台服务所在的源
|
||
|
target: 'http://localhost:5678',
|
||
|
//修改源
|
||
|
changeOrigin: true,
|
||
|
rewrite: path => path.replace(/^\/api/, ''),
|
||
|
},
|
||
|
},
|
||
|
port: 8765,
|
||
|
},
|
||
|
})
|