homepage/next.config.js
2022-09-12 17:56:04 +01:00

14 lines
294 B
JavaScript

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