homepage/next.config.js
2022-09-07 12:14:06 +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;