rainnny.club/next.config.mjs
Rainnny7 0b3745bc88
All checks were successful
Deploy Site / docker (ubuntu-latest, 2.44.0) (push) Successful in 1m34s
improvements
2024-08-29 19:11:47 -04:00

22 lines
352 B
JavaScript

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