This commit is contained in:
tuna2134
2025-04-29 21:27:33 +00:00
parent 99891c77d7
commit d83a58cd6d
6 changed files with 94 additions and 70 deletions

View File

@@ -1,18 +1,18 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: "cdn.discordapp.com",
}
]
}
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.discordapp.com",
},
],
},
};
if (process.env.OUTPUT === "standalone") {
nextConfig.output = "standalone";
nextConfig.output = "standalone";
}
export default nextConfig;