2024-09-09 21:25:27 -04:00
|
|
|
/** @type {import("next").NextConfig} */
|
2024-08-29 03:43:36 -04:00
|
|
|
const nextConfig = {
|
2024-09-09 21:25:27 -04:00
|
|
|
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",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2024-08-29 03:43:36 -04:00
|
|
|
};
|
2024-08-28 23:15:07 -04:00
|
|
|
export default nextConfig;
|