13 lines
249 B
JavaScript
13 lines
249 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
optimizeCss: true,
|
|
},
|
|
swcMinify: true,
|
|
images: {
|
|
domains: ["cdn.scoresaber.com", "*.cdn.beatsaver.com", "cdn.fascinated.cc"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|