Skip to content
Open
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
50 changes: 30 additions & 20 deletions runtime/_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ export const sidebar = [
title: "Setup your environment",
href: "/runtime/getting_started/setup_your_environment/",
},
{
title: "Deno & VS Code",
href: "/runtime/reference/vscode/",
},
],
},
{
Expand Down Expand Up @@ -61,6 +65,10 @@ export const sidebar = [
title: "Web development",
href: "/runtime/fundamentals/web_dev/",
},
{
title: "JSX and React",
href: "/runtime/reference/jsx/",
},
{
title: "HTTP Server",
href: "/runtime/fundamentals/http_server/",
Expand Down Expand Up @@ -197,10 +205,23 @@ export const sidebar = [
},
],
},
],
},
{
title: "Deploying",
items: [
{
title: "Deploying your app",
title: "Overview",
href: "/runtime/deploy/",
},
{
title: "Docker",
href: "/runtime/reference/docker/",
},
{
title: "Continuous integration",
href: "/runtime/reference/continuous_integration/",
},
],
},
{
Expand Down Expand Up @@ -237,7 +258,7 @@ export const sidebar = [
],
},
{
title: "Advanced",
title: "Runtime APIs",
items: [
{
title: "FFI",
Expand All @@ -259,29 +280,18 @@ export const sidebar = [
title: "Loader hooks",
href: "/runtime/reference/loader_hooks/",
},
{
title: "Lint plugins",
href: "/runtime/reference/lint_plugins/",
},
],
},
{
title: "Build tooling",
items: [
{
title: "Bundling",
href: "/runtime/reference/bundling/",
},
{
title: "Docker",
href: "/runtime/reference/docker/",
},
{
title: "Continuous integration",
href: "/runtime/reference/continuous_integration/",
},
{
title: "JSX and React",
href: "/runtime/reference/jsx/",
},
{
title: "Deno & VS Code",
href: "/runtime/reference/vscode/",
title: "Lint plugins",
href: "/runtime/reference/lint_plugins/",
},
],
},
Expand Down
Loading