Files
cecilia/next.config.ts
tuna2134 d83a58cd6d format
2025-04-29 21:27:33 +00:00

19 lines
317 B
TypeScript

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