From 37a5fa8d8fd372b173adb33c1ee6a86c8d749e7e Mon Sep 17 00:00:00 2001 From: Maarten Balliauw Date: Fri, 18 Apr 2025 14:19:41 +0200 Subject: [PATCH] Remove Google Fonts explicit preload (handled by Astro) --- astro.config.mjs | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index fdf3a0cf1..a644897cb 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -75,32 +75,7 @@ export default defineConfig({ defer: true, async: true, }, - }, - // -- - // Preload Google Fonts - { - tag: "link", - attrs: { - href: "https://fonts.googleapis.com", - rel: "preconnect", - }, - }, - { - tag: "link", - attrs: { - href: "https://fonts.gstatic.com", - rel: "preconnect", - crossorigin: true, - }, - }, - { - tag: "link", - attrs: { - href: "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap", - rel: "stylesheet", - }, - }, - // -- + } ], logo: { light: "./src/assets/duende-logo.svg",