scoresaber-reloaded-v2/next.config.js
Liam 17baa366c8
Some checks failed
deploy / deploy (push) Failing after 39s
color changes and added a navbar
2023-10-20 11:54:20 +01:00

29 lines
560 B
JavaScript

const nextBuildId = require("next-build-id");
/** @type {import('next').NextConfig} */
const nextConfig = {
generateEtags: true,
compress: true,
env: {
NEXT_PUBLIC_BUILD_ID: nextBuildId.sync({ dir: __dirname }),
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.fascinated.cc",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "cdn.scoresaber.com",
port: "",
pathname: "/**",
},
],
},
};
module.exports = nextConfig;