You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl -X POST https://your-api.workers.dev/api/build/html \
-F "file=@mypage.html" \
-F "appName=MyApp"
Build React/Vite Project
# Zip your project first
zip -r myapp.zip myapp/
# Upload and build
curl -X POST https://your-api.workers.dev/api/build/zip \
-F "file=@myapp.zip" \
-F "appName=MyReactApp"