rainnny.club/next.config.mjs
Rainnny7 65f8d0c189
All checks were successful
Deploy Site / docker (ubuntu-latest, 2.44.0) (push) Successful in 1m47s
Basic Discord integration
2024-09-03 16:28:43 -04:00

26 lines
422 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: "bonfire.wtf",
},
{
protocol: "https",
hostname: "img.icons8.com",
},
],
},
};
export default nextConfig;