هذا الالتزام موجود في:
2026-04-29 16:55:25 +03:00
التزام 7885be6c2e
82 ملفات معدلة مع 31672 إضافات و0 حذوفات

23
next.config.mjs Normal file
عرض الملف

@@ -0,0 +1,23 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
poweredByHeader: false,
compress: true,
images: {
formats: ["image/avif", "image/webp"],
},
webpack: (config, { dev }) => {
if (dev) {
config.watchOptions = {
...config.watchOptions,
poll: 1000,
aggregateTimeout: 300,
ignored: /node_modules/,
};
}
return config;
},
};
export default nextConfig;