Files
Cellar---Alcools-collection/frontend/vite.config.ts
T
2026-06-26 11:54:29 +02:00

13 lines
252 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': 'http://localhost:8000',
'/uploads': 'http://localhost:8000',
},
},
})