vite.config.ts 191 B

12345678910
  1. import { defineConfig } from "vite";
  2. import react from "@vitejs/plugin-react";
  3. export default defineConfig({
  4. plugins: [react()],
  5. server: {
  6. port: 5177,
  7. strictPort: true,
  8. },
  9. });