-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): explicitly specify vercel config path in deployment workflows
- Add local config path to production deployment in deploy.yml - Set config path for preview environment in preview.yml Signed-off-by: yangchuansheng <yangchuansheng33@gmail.com>
- Loading branch information
1 parent
c7c596e
commit 8ba23c2
Showing
3 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"redirects": [ | ||
{ | ||
"source": "/zh-Hans/blog/:path(.*)", | ||
"destination": "https://blog.sealos.run/blog/:path", | ||
"permanent": false | ||
}, | ||
{ | ||
"source": "/docs/Intro", | ||
"destination": "https://sealos.io/docs/overview/intro", | ||
"permanent": false | ||
}, | ||
{ | ||
"source": "/zh-Hans/:path(.*)", | ||
"destination": "https://sealos.run/:path", | ||
"permanent": false | ||
}, | ||
{ | ||
"source": "/self-hosting", | ||
"destination": "https://sealos.run/self-hosting", | ||
"permanent": false | ||
}, | ||
{ | ||
"source": "/#", | ||
"destination": "https://sealos.run/#", | ||
"permanent": false | ||
}, | ||
{ | ||
"source": "/docs/5.0.0/user-guide/ai-proxy", | ||
"destination": "https://sealos.run/docs/5.0.0/user-guide/ai-proxy/", | ||
"permanent": false | ||
}, | ||
{ | ||
"source": "/docs/5.0.0/developer-guide/sealos/installation", | ||
"destination": "https://sealos.run/docs/5.0.0/developer-guide/sealos/installation", | ||
"permanent": false | ||
}, | ||
{ | ||
"source": "/docs/self-hosting/sealos/installation", | ||
"destination": "https://sealos.run/docs/self-hosting/sealos/installation", | ||
"permanent": false | ||
}, | ||
{ | ||
"source": "/docs/self-hosting/lifecycle-management/quick-start/deploy-kubernetes", | ||
"destination": "https://sealos.run/docs/self-hosting/lifecycle-management/quick-start/deploy-kubernetes", | ||
"permanent": false | ||
}, | ||
{ | ||
"source": "/company", | ||
"destination": "https://sealos.run/company", | ||
"permanent": false | ||
} | ||
] | ||
} |