690331:1652 Correspondence Page Refactor by GPT-5.3-Codex Medium #04
CI / CD Pipeline / build (push) Successful in 12m6s
CI / CD Pipeline / deploy (push) Failing after 4m37s

This commit is contained in:
2026-03-31 16:52:24 +07:00
parent bf5c67fc7e
commit fb73d1c5b5
2 changed files with 130 additions and 0 deletions
+12
View File
@@ -78,6 +78,18 @@ const nextConfig = {
key: 'X-Content-Type-Options',
value: 'nosniff',
},
{
key: 'Content-Security-Policy',
value: [
"default-src 'self'",
"script-src 'self' 'unsafe-eval'", // จำเป็นสำหรับ Workflow DSL Engine (new Function())
"style-src 'self' 'unsafe-inline'",
"img-src 'self' data: https:",
"font-src 'self'",
"connect-src 'self' ws: wss:",
"frame-src 'self'",
].join('; '),
},
],
},
];