rainnny.club/next.config.mjs
Rainnny7 e607a26197
All checks were successful
Deploy Site / docker (ubuntu-latest, 2.44.0) (push) Successful in 1m32s
Improve the Discord status component
2024-09-04 01:23:21 -04:00

30 lines
483 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;