mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-19 22:09:37 +00:00
## Summary <!-- One sentence describing what changed and why. --> ## Changes - **What**: <!-- Core functionality added/modified --> - **Breaking**: <!-- Any breaking changes (if none, remove this line) --> - **Dependencies**: <!-- New dependencies (if none, remove this line) --> ## Review Focus <!-- Critical design decisions or edge cases that need attention --> <!-- If this PR fixes an issue, uncomment and update the line below --> <!-- Fixes #ISSUE_NUMBER --> ## Screenshots (if applicable) <!-- Add screenshots or video recording to help explain your changes --> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-10156-feat-website-add-SEO-sitemap-redirects-CI-workflow-and-Vercel-config-3266d73d3650816ab9eaebd11072d481) by [Unito](https://www.unito.io) --------- Co-authored-by: GitHub Action <action@github.com>
27 lines
724 B
JSON
27 lines
724 B
JSON
{
|
|
"$schema": "https://openapi.vercel.sh/vercel.json",
|
|
"buildCommand": "pnpm --filter @comfyorg/website build",
|
|
"outputDirectory": "apps/website/dist",
|
|
"installCommand": "pnpm install --frozen-lockfile",
|
|
"framework": null,
|
|
"redirects": [
|
|
{
|
|
"source": "/pricing",
|
|
"destination": "/cloud/pricing",
|
|
"permanent": true
|
|
},
|
|
{
|
|
"source": "/enterprise",
|
|
"destination": "/cloud/enterprise",
|
|
"permanent": true
|
|
},
|
|
{
|
|
"source": "/blog",
|
|
"destination": "https://blog.comfy.org/",
|
|
"permanent": true
|
|
},
|
|
{ "source": "/contact", "destination": "/about", "permanent": true },
|
|
{ "source": "/press", "destination": "/about", "permanent": true }
|
|
]
|
|
}
|