Compare commits

..

No commits in common. "320f7fbc7e22748861ce2a289216d0b1f85ef277" and "22fb3a2e30568a0bb4d6b6db0c536a63da33567e" have entirely different histories.

2 changed files with 25 additions and 12 deletions

View file

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

View file

@ -4,7 +4,31 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
unoptimized: true,
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",
},
],
},
};