Files
forward-assist/packages/frontend/vite.config.ts
T
Eric Jungbauer 05aad75272 Phase 1: Forward Assist initial build
Multi-tenant AI help desk SaaS for the firearms industry.
Full monorepo: API (Express/Prisma), Worker (BullMQ), Frontend (React/Vite/Tailwind).
PostgreSQL 16 + pgvector, Redis 7, JWT auth, RLS tenant isolation.
Dark Armory theme with tactical branding throughout.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-20 01:45:22 +00:00

24 lines
508 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
import path from "path";
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
server: {
port: 5173,
allowedHosts: ["tickets.jfamily.io", ".jfamily.io"],
proxy: {
"/api": {
target: "http://localhost:3001",
changeOrigin: true,
},
},
},
});