obmp-docker/exabgp-ui/vite.config.js

16 lines
299 B
JavaScript
Raw Normal View History

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
base: '/exabgp/',
plugins: [vue()],
server: {
proxy: {
'/api': {
target: 'http://localhost:5050',
rewrite: path => path.replace(/^\/api/, '')
}
}
}
})