Files
engel/next.config.mjs
2026-04-21 07:37:18 +03:30

10 lines
178 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
formats: ["image/avif", "image/webp"],
},
};
export default nextConfig;