30 lines
820 B
JavaScript
30 lines
820 B
JavaScript
import {defineConfig} from 'vite'
|
||
import vue from '@vitejs/plugin-vue'
|
||
import tailwindcss from "@tailwindcss/vite"
|
||
import path from 'path'
|
||
|
||
// https://vite.dev/config/
|
||
export default defineConfig({
|
||
plugins: [
|
||
vue(),
|
||
tailwindcss()
|
||
],
|
||
resolve: {
|
||
alias: {
|
||
'@': path.resolve(__dirname, './src')
|
||
}
|
||
},
|
||
server: {
|
||
port: 8888,
|
||
proxy: {
|
||
'/api': {
|
||
// 注意:target 不要带 /api 路径后缀(http-proxy 会把 target 路径拼回请求前缀)
|
||
// GoFrame 路由是 /login、/user/list 等,rewrite 已去掉 /api 前缀
|
||
target: 'http://127.0.0.1:8000',
|
||
changeOrigin: true,
|
||
rewrite: (path) => path.replace(/^\/api/, '')
|
||
}
|
||
}
|
||
}
|
||
})
|