mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-02-06 14:42:40 +00:00
19 lines
317 B
TypeScript
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;
|