lynxkite / web /vite.config.ts
darabos's picture
Send graph to backend.
e0b4f7e
raw
history blame
222 Bytes
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
proxy: { '/api': 'http://127.0.0.1:8000' },
},
})