From c1f3eacd03577582bd73e4a158b3e1670c2f4aa3 Mon Sep 17 00:00:00 2001 From: trafficlunar Date: Mon, 30 Mar 2026 19:46:28 +0100 Subject: [PATCH] fix: unoptimize images ITS SLOWING DOWN THE SITE SO MUCH IT'S OFFLINE --- next.config.ts | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/next.config.ts b/next.config.ts index 9736afa..9b88254 100644 --- a/next.config.ts +++ b/next.config.ts @@ -4,34 +4,7 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", images: { - localPatterns: [ - { - pathname: "/mii/*/image", - }, - { - pathname: "/profile/*/picture", - }, - { - pathname: "/tutorial/**", - }, - { - pathname: "/guest.png", - }, - ], - remotePatterns: [ - { - hostname: "avatars.githubusercontent.com", - }, - { - hostname: "cdn.discordapp.com", - }, - { - hostname: "studio.mii.nintendo.com", - }, - { - hostname: "*.googleusercontent.com", - }, - ], + unoptimized: true, }, };