test / client /vite.config.js
akborana4's picture
Create vite.config.js
58c24ac verified
raw
history blame
164 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
build: { outDir: 'dist' }
});