homepage/next.config.js

12 lines
215 B
JavaScript
Raw Normal View History

2022-08-14 12:02:58 +03:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2022-08-24 10:44:35 +03:00
output: "standalone",
2022-08-14 12:02:58 +03:00
swcMinify: true,
2022-08-24 10:44:35 +03:00
images: {
domains: ["cdn.jsdelivr.net"],
},
};
2022-08-14 12:02:58 +03:00
2022-08-24 10:44:35 +03:00
module.exports = nextConfig;