diff --git a/website/blog/changelogs/19.0.0.md b/website/blog/changelogs/19.0.0.md index a47ef0e4f..3e26f4576 100644 --- a/website/blog/changelogs/19.0.0.md +++ b/website/blog/changelogs/19.0.0.md @@ -3,6 +3,7 @@ slug: 19-changelog title: V19 Changelog authors: [skillz] tags: [changelog] +date: 2023-02-28T23:07:48Z --- # Changelog 19.0.0 diff --git a/website/blog/why-we-switched-from-deno-to-nodejs.md b/website/blog/why-we-switched-from-deno-to-nodejs.md index 459a57204..29fb447e1 100644 --- a/website/blog/why-we-switched-from-deno-to-nodejs.md +++ b/website/blog/why-we-switched-from-deno-to-nodejs.md @@ -3,6 +3,7 @@ slug: why-we-switched-from-deno-to-nodejs title: 'From Deno to Node.js: Why We Made the Switch' authors: [itohatweb, skillz] tags: [deno, node.js, library] +date: 2023-04-03T17:01:03Z --- # Our move from Deno to Node.js diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 46f0154f4..4bfc26ce6 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -44,14 +44,10 @@ const config = { // Please change this to your repo. // Remove this to remove the "edit this page" links. editUrl: - 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/', + 'https://github.com/discordeno/discordeno/tree/main/website/', }, blog: { showReadingTime: true, - // Please change this to your repo. - // Remove this to remove the "edit this page" links. - editUrl: - 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/', }, theme: { customCss: require.resolve('./src/styling/index.css'), @@ -76,7 +72,7 @@ const config = { type: 'doc', docId: 'intro', position: 'left', - label: 'Tutorial', + label: 'Documentation', }, { to: '/blog', label: 'Blog', position: 'left' }, { @@ -98,7 +94,7 @@ const config = { title: 'Docs', items: [ { - label: 'Tutorial', + label: 'Documentation', to: '/docs/intro', }, ], @@ -126,7 +122,7 @@ const config = { ], }, ], - copyright: `Copyright © ${new Date().getFullYear()} 2021-2023, Discordeno.`, + copyright: `Copyright © 2021-${new Date().getFullYear()}, Discordeno.`, }, prism: { theme: lightCodeTheme,