âš ī¸ Deployment Configuration Issue

Your app is deployed but needs backend services to function

🔴 Current Problem
The application is trying to call backend API endpoints (/api/claude, /api/openai) that don't exist on your static web server at iwant2study.org. This causes the "Backend proxy error: 404" message.
â„šī¸ Why This Happens
This application requires a Node.js backend server to securely proxy API calls to AI services (Claude, OpenAI, Gemini). When deployed as static files only, these backend endpoints are not available.
✅ Solution Options
Option 1: Deploy with Node.js Backend
  1. Check if iwant2study.org supports Node.js hosting
  2. Upload all project files (not just dist folder)
  3. Run npm install on the server
  4. Set up environment variables (.env file with API keys)
  5. Start the server with node server.js
Option 2: Use a Cloud Backend Service
  1. Deploy the backend to Vercel, Netlify, or Render
  2. Update the app to use the cloud backend URL
  3. Keep the frontend on iwant2study.org
Option 3: Run Locally Instead
  1. Run npm run dev on your local machine
  2. Access at http://localhost:5173
  3. All features will work with your local backend
View Documentation