porridger/front/vite.config.js
dm1sh dcd91cb9b4
Removed builtin static video file
Switched from CORS to proxy for dev
2023-07-10 17:14:36 +03:00

20 lines
426 B
JavaScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
const BACK_ADDRESS = 'http://127.0.0.1:8000'
// https://vitejs.dev/config/
export default defineConfig(
({ command }) => ({
base: (command === 'serve') ? "/" : "/static",
plugins: [react()],
server: {
proxy: {
'/api': BACK_ADDRESS,
'/static': BACK_ADDRESS,
'/uploads': BACK_ADDRESS
}
}
})
)