21 lines
468 B
JavaScript
21 lines
468 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// 生产:`.env.production` 中 VITE_API_URL=https://post.api.smyhub.com
|
|
// 开发:未设置时走相对路径 + server.proxy
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
'/api': 'http://127.0.0.1:8787',
|
|
},
|
|
},
|
|
preview: {
|
|
port: 5173,
|
|
proxy: {
|
|
'/api': 'http://127.0.0.1:8787',
|
|
},
|
|
},
|
|
})
|