-
Notifications
You must be signed in to change notification settings - Fork 8
/
next.config.mjs
31 lines (29 loc) · 1.23 KB
/
next.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** @type {import('next').NextConfig} */
const nextConfig = {
// استخدام standalone أو export بناءً على احتياجاتك
output: 'export', // أو 'export' إذا كنت تقوم بإنشاء موقع ثابت
trailingSlash: true,
skipTrailingSlashRedirect: true,
distDir: 'build',
images: {
unoptimized: true,
},
poweredByHeader: false, // تعطيل X-Powered-By Header
productionBrowserSourceMaps: false, // تعطيل Source Maps
/**
* source: الرابط القديم الذي ترغب في إعادة توجيهه.
* destination: الرابط الجديد الذي يجب توجيه المستخدم إليه.
* permanent: تعيينه على true يعني أن إعادة التوجيه دائمة (ستستخدم رمز الحالة 308). إذا كنت تريد أن تكون إعادة التوجيه مؤقتة، يمكنك تعيينه إلى false، وستستخدم رمز الحالة 307.
* @returns
*/
async redirects() {
return [
{
source: '/Quran_pdf/index.html',
destination: '/quran-pdf',
permanent: true,
}
];
},
};
export default nextConfig;