mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-03-28 19:23:15 +00:00
Compare commits
No commits in common. "320f7fbc7e22748861ce2a289216d0b1f85ef277" and "22fb3a2e30568a0bb4d6b6db0c536a63da33567e" have entirely different histories.
320f7fbc7e
...
22fb3a2e30
2 changed files with 25 additions and 12 deletions
|
|
@ -1,11 +0,0 @@
|
|||
.next
|
||||
node_modules
|
||||
.git
|
||||
uploads
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
.gitignore
|
||||
README.md
|
||||
DEVELOPMENT.md
|
||||
LICENSE
|
||||
.env*
|
||||
|
|
@ -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",
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue