23 lines
476 B
JavaScript
23 lines
476 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: { target: 'es2018', sourcemap: false },
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:3070',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
},
|
|
'/uploads': {
|
|
target: 'http://localhost:3070',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
},
|
|
},
|
|
},
|
|
})
|