homepage/next.config.js
2022-08-24 10:44:35 +03:00

12 lines
215 B
JavaScript

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