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

14 lines
272 B
JavaScript
Raw Normal View History

2022-10-26 09:41:15 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
optimizeCss: true,
},
2022-10-26 11:28:48 +00:00
output: "standalone",
2022-10-26 10:55:37 +00:00
swcMinify: true,
images: {
2022-10-26 09:41:15 +00:00
domains: ["cdn.scoresaber.com", "*.cdn.beatsaver.com", "cdn.fascinated.cc"],
},
};
2022-10-26 09:41:15 +00:00
module.exports = nextConfig;