This commit is contained in:
azizziy
2025-05-20 17:02:10 +05:00
commit c01e852a59
257 changed files with 27766 additions and 0 deletions

25
next.config.js Normal file
View File

@@ -0,0 +1,25 @@
const withNextIntl = require('next-intl/plugin')('./i18n.ts');
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
{
protocol: 'http',
hostname: '**',
},
],
},
output: 'standalone',
reactStrictMode: false,
typescript: {
ignoreBuildErrors: false,
},
};
module.exports = withNextIntl(nextConfig);