Files
LabWise/vite.config.ts

16 lines
449 B
TypeScript
Raw Permalink Normal View History

2026-03-18 21:51:02 -05:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [react(), tailwindcss()],
2026-03-19 04:22:00 +00:00
server: {
host: true,
2026-03-19 18:50:18 +00:00
allowedHosts: ["labwise.wahwa.com", "localhost"],
proxy: {
'/api': { target: 'http://localhost:3001', changeOrigin: true },
'/uploads': { target: 'http://localhost:3001', changeOrigin: true },
},
2026-03-19 04:22:00 +00:00
},
2026-03-18 21:51:02 -05:00
});