31 lines
478 B
TypeScript
31 lines
478 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
images: {
|
|
localPatterns: [
|
|
{
|
|
pathname: "/mii/*/image",
|
|
},
|
|
{
|
|
pathname: "/profile/*/picture",
|
|
},
|
|
{
|
|
pathname: "/tutorial/**",
|
|
},
|
|
],
|
|
remotePatterns: [
|
|
{
|
|
hostname: "avatars.githubusercontent.com",
|
|
},
|
|
{
|
|
hostname: "cdn.discordapp.com",
|
|
},
|
|
{
|
|
hostname: "studio.mii.nintendo.com",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|