vite.config.js 150 B

1234567
  1. import { defineConfig } from "vite";
  2. import react from "@vitejs/plugin-react";
  3. export default defineConfig({
  4. plugins: [react()],
  5. base: "./",
  6. });