Automatically synced with your v0.dev deployments
This repository will stay in sync with your deployed chats on v0.dev. Any changes you make to your deployed app will be automatically pushed to this repository from v0.dev.
Your project is live at:
https://vercel.com/yosukefurukawas-projects/v0-
Continue building your app on:
https://v0.dev/chat/projects/gb3gCU9lrbs
Before building or deploying the application, configure the backend URL using environment variables:
# Copy the example environment file
cp .env.example .env.localNEXT_PUBLIC_API_URL: Backend API URL for both REST API calls and SSE connectionsNEXT_PUBLIC_BACKEND_URL: Alternative backend URL (takes precedence over NEXT_PUBLIC_API_URL)
# For local development (default)
NEXT_PUBLIC_API_URL=http://localhost:3001# For production deployment
NEXT_PUBLIC_API_URL=https://your-backend-api.com
# or
NEXT_PUBLIC_BACKEND_URL=https://your-backend-api.com# Development
npm run dev
# Production build
npm run build
npm run start- Create and modify your project using v0.dev
- Deploy your chats from the v0 interface
- Changes are automatically pushed to this repository
- Vercel deploys the latest version from this repository