This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/next.config.js

20 lines
368 B
JavaScript
Raw Normal View History

2022-10-26 09:41:15 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2022-10-26 11:28:48 +00:00
output: "standalone",
2022-10-26 10:55:37 +00:00
swcMinify: true,
2022-10-29 10:29:03 +00:00
compress: true,
2023-03-26 16:16:07 +00:00
generateEtags: true,
optimizeFonts: true,
images: {
2022-10-27 17:59:28 +00:00
domains: [
"cdn.scoresaber.com",
"cdn.beatleader.xyz",
2022-10-27 17:59:28 +00:00
"eu.cdn.beatsaver.com",
"cdn.fascinated.cc",
2022-10-28 18:52:47 +00:00
"avatars.akamai.steamstatic.com",
2022-10-27 17:59:28 +00:00
],
},
};
2022-10-26 09:41:15 +00:00
module.exports = nextConfig;