2024-08-28 23:15:07 -04:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-08-29 03:43:36 -04:00
|
|
|
const nextConfig = {
|
2024-08-29 04:19:23 -04:00
|
|
|
output: "standalone",
|
2024-08-29 03:43:36 -04:00
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
2024-08-29 19:11:47 -04:00
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "cdn.rainnny.club",
|
|
|
|
},
|
2024-09-03 16:28:43 -04:00
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "cdn.discordapp.com",
|
|
|
|
},
|
2024-09-04 01:23:21 -04:00
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "i.scdn.co",
|
|
|
|
},
|
2024-08-29 19:11:47 -04:00
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "bonfire.wtf",
|
|
|
|
},
|
2024-08-29 03:43:36 -04:00
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "img.icons8.com",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|
2024-08-28 23:15:07 -04:00
|
|
|
export default nextConfig;
|