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.
Files
beatsaber-overlay/next.config.js

20 lines
368 B
JavaScript
Raw Normal View History

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