feat: add frontend/vite.config.ts
This commit is contained in:
parent
605cbcee27
commit
75f0899b88
13
frontend/vite.config.ts
Normal file
13
frontend/vite.config.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
server: {
|
||||
port: 5173,
|
||||
proxy: {
|
||||
'/api': { target: 'http://localhost:8026', changeOrigin: true },
|
||||
},
|
||||
},
|
||||
build: { outDir: '../dist', emptyOutDir: true },
|
||||
})
|
||||
Loading…
Reference in New Issue
Block a user