This commit is contained in:
tuna2134
2025-04-29 21:31:34 +00:00
parent ac705d36b0
commit 22109ff516
6 changed files with 98 additions and 96 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;