scoresaber-reloaded-v2/next.config.js
2023-10-19 14:17:55 +01:00

24 lines
435 B
JavaScript

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