rainnny.club/next.config.mjs
2024-09-09 21:25:27 -04:00

30 lines
714 B
JavaScript

/** @type {import("next").NextConfig} */
const nextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.rainnny.club",
},
{
protocol: "https",
hostname: "cdn.discordapp.com",
},
{
protocol: "https",
hostname: "i.scdn.co",
},
{
protocol: "https",
hostname: "bonfire.wtf",
},
{
protocol: "https",
hostname: "img.icons8.com",
},
],
},
};
export default nextConfig;