From 320f7fbc7e22748861ce2a289216d0b1f85ef277 Mon Sep 17 00:00:00 2001 From: trafficlunar Date: Sat, 14 Mar 2026 13:17:02 +0000 Subject: [PATCH] fix: disable optimizing images for 22fb3a2e --- next.config.ts | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/next.config.ts b/next.config.ts index 8e76b72..9b88254 100644 --- a/next.config.ts +++ b/next.config.ts @@ -4,31 +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", - }, - ], + unoptimized: true, }, };