Rainnny7
e607a26197
All checks were successful
Deploy Site / docker (ubuntu-latest, 2.44.0) (push) Successful in 1m32s
30 lines
483 B
JavaScript
30 lines
483 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
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",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
export default nextConfig;
|