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 13:48:19 -05:00
|
|
|
allowedHosts: ["localhost"],
|
2026-03-19 05:42:11 +00:00
|
|
|
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
|
|
|
});
|