homepage/next.config.js
Ben Phelps 374b99322e disable SWC minify
too experimental right now for arm/v6/v7 support
2022-08-25 18:37:13 +03:00

13 lines
291 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "standalone",
swcMinify: false,
experimental: { images: { allowFutureImage: true, unoptimized: true } },
images: {
domains: ["cdn.jsdelivr.net"],
},
};
module.exports = nextConfig;