vite.config.ts 255 B

12345678910111213
  1. import { defineConfig } from "vite";
  2. import react from "@vitejs/plugin-react";
  3. export default defineConfig({
  4. build: {
  5. outDir: "dist/client",
  6. },
  7. server: {
  8. host: "0.0.0.0",
  9. allowedHosts: ["terminal.local"],
  10. },
  11. plugins: [react()],
  12. });