Files
Airtep/gig-poc/apps/web/vite.config.ts
2026-03-30 20:49:40 +08:00

11 lines
188 B
TypeScript

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