15 lines
264 B
TypeScript
15 lines
264 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
proxy: {
|
|
'/v1': 'http://localhost:8080',
|
|
'/login': 'http://localhost:8080',
|
|
'/logout': 'http://localhost:8080',
|
|
},
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
},
|
|
})
|