vite.config.js 289 B

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