sadar / frontend /vite.config.ts
Ruperth's picture
feat: polish mobile responsive layout across all dashboard screens
96bba34
Raw
History Blame Contribute Delete
250 Bytes
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
server: {
port: 5180,
strictPort: true,
proxy: {
"/api": "http://localhost:8000",
},
},
});