260322:1648 Correct Coresspondence / Doing RFA / Correct CI
CI Pipeline / build (push) Failing after 12m41s
Build and Deploy / deploy (push) Failing after 2m44s

This commit is contained in:
admin
2026-03-22 16:48:12 +07:00
parent e5deedb42e
commit 11984bfa29
683 changed files with 105251 additions and 29068 deletions
+7 -7
View File
@@ -14,8 +14,8 @@ const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**", // อนุญาตทุก Domain สำหรับ Avatar (ในการใช้งานจริงควรระบุ Domain เฉพาะ เช่น googleusercontent.com)
protocol: 'https',
hostname: '**', // อนุญาตทุก Domain สำหรับ Avatar (ในการใช้งานจริงควรระบุ Domain เฉพาะ เช่น googleusercontent.com)
},
],
// ลดขนาดไฟล์รูปภาพที่จะถูก optimize
@@ -64,20 +64,20 @@ const nextConfig = {
headers: [
{
key: 'X-DNS-Prefetch-Control',
value: 'on'
value: 'on',
},
{
key: 'X-XSS-Protection',
value: '1; mode=block'
value: '1; mode=block',
},
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN' // ป้องกันการถูก Embedding ใน Iframe (Clickjacking)
value: 'SAMEORIGIN', // ป้องกันการถูก Embedding ใน Iframe (Clickjacking)
},
{
key: 'X-Content-Type-Options',
value: 'nosniff'
}
value: 'nosniff',
},
],
},
];