digitalassistant / vite.config.js
Chaitu2112's picture
Add ICFAI Digital MBA Assistant application with React frontend
fbfb13b
raw
history blame contribute delete
197 Bytes
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
// Important for Hugging Face static hosting
base: "./",
});