| 12345678910 |
- import { defineConfig } from 'vite'
- import react from '@vitejs/plugin-react'
- import tailwindcss from '@tailwindcss/vite';
- // https://vite.dev/config/
- // Note: Index generation is now handled by the backend API server
- export default defineConfig({
- plugins: [react(), tailwindcss()],
- })
|