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
11 changes: 11 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ const withNextra = nextra({
});

const config = withNextra({
async redirects() {
return [
{
// Kraken Verify is no longer available. Temporary redirect so the
// published URL keeps resolving instead of 404ing.
source: "/build/verify",
destination: "/",
permanent: false,
},
];
},
eslint: {
ignoreDuringBuilds: true,
},
Expand Down
1 change: 0 additions & 1 deletion src/pages/build/_meta.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {

Check warning on line 1 in src/pages/build/_meta.ts

View workflow job for this annotation

GitHub Actions / js-lint

Assign object to a variable before exporting as module default
"getting-started": "Getting Started",
"onchain-clients": "Onchain Clients",
"run-an-ink-node": {
Expand All @@ -13,6 +13,5 @@
newWindow: true,
},
"ink-kit": "Ink Kit (archived)",
verify: "Kraken Verify",
tutorials: "Tutorials",
};
135 changes: 0 additions & 135 deletions src/pages/build/verify.mdx

This file was deleted.

Loading