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",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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;
|