homepage/next.config.js
2022-09-12 14:30:57 +03:00

13 lines
239 B
JavaScript

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