20 lines
368 B
JavaScript
20 lines
368 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
swcMinify: true,
|
|
compress: true,
|
|
generateEtags: true,
|
|
optimizeFonts: true,
|
|
images: {
|
|
domains: [
|
|
"cdn.scoresaber.com",
|
|
"cdn.beatleader.xyz",
|
|
"eu.cdn.beatsaver.com",
|
|
"cdn.fascinated.cc",
|
|
"avatars.akamai.steamstatic.com",
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|