Rainnny7
0b3745bc88
All checks were successful
Deploy Site / docker (ubuntu-latest, 2.44.0) (push) Successful in 1m34s
22 lines
352 B
JavaScript
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;
|