scoresaber-reloaded-v2/next.config.js

16 lines
267 B
JavaScript
Raw Normal View History

2023-10-18 06:58:40 +00:00
/** @type {import('next').NextConfig} */
2023-10-19 04:21:35 +00:00
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.fascinated.cc",
port: "",
pathname: "/**",
},
],
},
};
2023-10-18 06:58:40 +00:00
2023-10-19 04:21:35 +00:00
module.exports = nextConfig;