Files
nl-blogs/client/vite.config.ts

20 lines
394 B
TypeScript
Raw Normal View History

2026-01-15 13:51:44 +08:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
port: 3000,
proxy: {
'/api': {
target: 'http://localhost:8081',
changeOrigin: true
2026-01-19 16:14:08 +08:00
},
'/uploads': {
target: 'http://localhost:8081',
changeOrigin: true
2026-01-15 13:51:44 +08:00
}
}
}
})