Compare commits

..

2 commits

Author SHA1 Message Date
320f7fbc7e fix: disable optimizing images
for 22fb3a2e
2026-03-14 13:17:02 +00:00
69402d6521 fix: add dockerignore 2026-03-14 13:05:56 +00:00
2 changed files with 12 additions and 25 deletions

11
.dockerignore Normal file
View file

@ -0,0 +1,11 @@
.next
node_modules
.git
uploads
Dockerfile
.dockerignore
.gitignore
README.md
DEVELOPMENT.md
LICENSE
.env*

View file

@ -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,
},
};