Files
extension/vercel.json
T
Hanzo Dev 30bba23219 feat: Comprehensive hanzo.app landing page and auto-releases
- Created hanzo.app landing page as central download hub
- Added download options for all platforms:
  - Desktop apps (Windows, macOS, Linux)
  - Mobile apps (iOS, Android)
  - Browser extensions (Chrome, Firefox, Edge, Safari)
  - IDE extensions (VS Code, JetBrains)
  - CLI tools (dev, MCP server)
  - Cloud platform access
- Updated CI/CD to create automatic nightly releases
- Added Vercel deployment workflow
- Created vercel.json with routing and redirects
- Added npm scripts for preview and deployment
- Landing page features:
  - Modern dark design with animations
  - Platform-specific download buttons
  - Quick start guide
  - Copy-to-clipboard for CLI commands
  - Responsive grid layout
- All download links point to GitHub releases or official stores
2025-07-11 16:04:39 -05:00

34 lines
956 B
JSON

{
"rewrites": [
{ "source": "/dev", "destination": "/landing.html" },
{ "source": "/", "destination": "/hanzo-app.html" }
],
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "X-Frame-Options", "value": "DENY" },
{ "key": "X-XSS-Protection", "value": "1; mode=block" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" }
]
}
],
"redirects": [
{
"source": "/download/vscode",
"destination": "https://marketplace.visualstudio.com/items?itemName=hanzo-ai.hanzo-ai",
"permanent": false
},
{
"source": "/download/jetbrains",
"destination": "https://github.com/hanzoai/extension/releases/latest",
"permanent": false
},
{
"source": "/github",
"destination": "https://github.com/hanzoai/extension",
"permanent": false
}
]
}