pidrio / project /vite.config.ts
Raiff1982's picture
Create vite.config.ts
c719719 verified
raw
history blame contribute delete
224 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
build: {
outDir: 'dist', // Ensure Hugging Face Spaces can locate the output
},
});