Skip to content

Commit

Permalink
Merge pull request #54 from denoland/initial_redirects
Browse files Browse the repository at this point in the history
adding more 404 paths/assets
  • Loading branch information
kwhinnery committed Sep 15, 2023
2 parents e69ef49 + e98733f commit 78361eb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src-deno/redirects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,22 @@ export default function configureRedirects(app: Hono) {
"/runtime/manual/runtime/web_platform_apis",
);

r("/runtime/manual/jsx_dom/twind", "/runtime/manual/advanced/jsx_dom/twind");

r(
"/runtime/manual/using_deno_with_other_technologies/jsx_dom",
"/runtime/manual/advanced/jsx_dom/overview",
);

r(
"/runtime/manual/linking_to_external_code/reloading_modules",
"/runtime/manual/basics/modules/reloading_modules",
);

r("/runtime/manual/linkingtoexternal_code", "/runtime/manual/basics/modules");

r("");

app.get(
"/runtime/manual/node/how_to_with_npm",
(c) => c.redirect("/runtime/tutorials"),
Expand Down
Binary file added static/apple-touch-icon-precomposed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 78361eb

Please sign in to comment.