RLE-wiki/docs/vite.config.ts

17 lines
356 B
TypeScript
Raw Normal View History

2023-12-05 23:18:27 +08:00
import { defineConfig } from 'vite'
export default defineConfig({
server: {
proxy: {
'/api': {
2024-03-07 08:43:29 +08:00
target: 'https://rle.wiki',
// uncomment the following line to use local server
// target: 'http://localhost:8787',
changeOrigin: true,
autoRewrite: true,
},
},
},
ssr: { noExternal: true },
2023-12-05 23:18:27 +08:00
})