Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ exclude = [
"^https?://([a-z0-9-]+\\.)*example\\.(com|org|net)",
# SVG xmlns reference, not a real link.
"^http://www\\.w3\\.org/2000/svg$",
# Vocs/Vercel route template, not a literal URL.
"^https://accounts\\.tempo\\.xyz/docs/:path\\*?$",
]

# Reuse cached results across runs.
Expand Down
16 changes: 13 additions & 3 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,17 +71,27 @@
},
{
"source": "/accounts/server/compose",
"destination": "/accounts/server/handler.compose",
"destination": "https://accounts.tempo.xyz/docs/server/handler.compose",
"permanent": true
},
{
"source": "/accounts/server/relay",
"destination": "/accounts/server/handler.relay",
"destination": "https://accounts.tempo.xyz/docs/server/handler.relay",
"permanent": true
},
{
"source": "/accounts/server/webAuthn",
"destination": "/accounts/server/handler.webAuthn",
"destination": "https://accounts.tempo.xyz/docs/server/handler.webAuthn",
"permanent": true
},
{
"source": "/accounts",
"destination": "https://accounts.tempo.xyz/docs",
"permanent": true
},
{
"source": "/accounts/:path*",
"destination": "https://accounts.tempo.xyz/docs/:path*",
"permanent": true
},
{
Expand Down
22 changes: 16 additions & 6 deletions vocs.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ export default defineConfig({
},
{
text: 'Accounts SDK',
link: '/accounts',
link: 'https://accounts.tempo.xyz/docs',
},
{
text: 'CLI',
Expand Down Expand Up @@ -1379,27 +1379,37 @@ export default defineConfig({
},
{
source: '/sdk/typescript/server',
destination: '/accounts/server',
destination: 'https://accounts.tempo.xyz/docs/server',
status: 301,
},
{
source: '/sdk/typescript/server/handlers',
destination: '/accounts/server',
destination: 'https://accounts.tempo.xyz/docs/server',
status: 301,
},
{
source: '/sdk/typescript/server/handler.compose',
destination: '/accounts/server/handler.compose',
destination: 'https://accounts.tempo.xyz/docs/server/handler.compose',
status: 301,
},
{
source: '/sdk/typescript/server/handler.feePayer',
destination: '/accounts/server/handler.relay',
destination: 'https://accounts.tempo.xyz/docs/server/handler.relay',
status: 301,
},
{
source: '/sdk/typescript/server/handler.keyManager',
destination: '/accounts/server/handler.webAuthn',
destination: 'https://accounts.tempo.xyz/docs/server/handler.webAuthn',
status: 301,
},
{
source: '/accounts',
destination: 'https://accounts.tempo.xyz/docs',
status: 301,
},
{
source: '/accounts/:path*',
destination: 'https://accounts.tempo.xyz/docs/:path*',
status: 301,
},
{
Expand Down
Loading