scoresaber-reloaded-v2/next.config.js
2023-10-19 05:21:35 +01:00

16 lines
267 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.fascinated.cc",
port: "",
pathname: "/**",
},
],
},
};
module.exports = nextConfig;