diff --git a/astro.config.ts b/astro.config.ts
index a80d695b..ab372d65 100644
--- a/astro.config.ts
+++ b/astro.config.ts
@@ -11,6 +11,10 @@ import { remarkReadingTime } from './src/plugins/remark-reading-time.mjs';
export default defineConfig({
site: 'https://spicetify.app',
trailingSlash: 'never',
+ // `` defaults to prefetch-all links, which spams fetches and can make
+ // the tab title / URL bar look like they’re constantly updating. Opt out; navigations
+ // are still client-side on click.
+ prefetch: false,
build: {
format: 'file',
},
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro
index c1c2bd4e..5550cbc1 100644
--- a/src/components/Navbar.astro
+++ b/src/components/Navbar.astro
@@ -151,37 +151,49 @@ const isBlogActive = currentPath.startsWith('/blog');
+
+
+
+
+
{fullTitle}
+
+
Skip to content