Files
zavrsni-rad-otel-app/frontend/vite.config.ts
Domagoj Andrić b1de6284f7
All checks were successful
CI / test (push) Successful in 54s
CI / test-analytics (push) Successful in 2m2s
CI / build-api (push) Successful in 3m1s
CI / build-frontend (push) Successful in 1m58s
CI / build-analytics (push) Successful in 41s
Remove retarded build time variables
2026-05-11 17:00:17 +02:00

15 lines
309 B
TypeScript

import tailwindcss from "@tailwindcss/vite";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [tailwindcss(), react()],
server: {
host: "0.0.0.0",
port: 5173,
proxy: {
"/api": "http://localhost:8000",
},
},
});