2023-10-20 10:54:20 +00:00
|
|
|
const nextBuildId = require("next-build-id");
|
|
|
|
|
2023-10-18 06:58:40 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
2023-10-19 04:21:35 +00:00
|
|
|
const nextConfig = {
|
2023-10-19 13:17:55 +00:00
|
|
|
generateEtags: true,
|
|
|
|
compress: true,
|
2023-10-20 10:54:20 +00:00
|
|
|
env: {
|
2023-10-20 11:00:41 +00:00
|
|
|
NEXT_PUBLIC_BUILD_ID:
|
|
|
|
process.env.GIT_REV || nextBuildId.sync({ dir: __dirname }),
|
2023-10-20 10:54:20 +00:00
|
|
|
},
|
2023-10-19 04:21:35 +00:00
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "cdn.fascinated.cc",
|
|
|
|
port: "",
|
|
|
|
pathname: "/**",
|
|
|
|
},
|
2023-10-19 13:17:55 +00:00
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "cdn.scoresaber.com",
|
|
|
|
port: "",
|
|
|
|
pathname: "/**",
|
|
|
|
},
|
2023-10-19 04:21:35 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|
2023-10-18 06:58:40 +00:00
|
|
|
|
2023-10-19 04:21:35 +00:00
|
|
|
module.exports = nextConfig;
|