feat: 更新环境配置并增强 iframe 安全处理机制
修改 .env.example,优化环境切换说明,并新增 API_BASE_URL 配置项,提升配置管理能力。 更新 next.config.ts:使用 API_BASE_URL 代理 API 请求,增强开发与生产环境的灵活性。 重构 iframe-bridge 与 use-token-refresh 组件,采用新的 iframe 来源校验方法,提升安全性检查能力。 优化 csp-config.ts:动态注入允许的父级来源(parent origins)到 CSP 配置中,强化安全策略。 调整 lottery-http:通过 Next.js 代理转发 API 请求,简化 API 调用流程。
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
import type { NextConfig } from "next";
|
||||
|
||||
import { securityHeaders } from "./src/lib/csp-config";
|
||||
import { nonCspSecurityHeaders } from "./src/lib/csp-config";
|
||||
|
||||
const lotteryApiProxyTarget =
|
||||
process.env.LOTTERY_API_PROXY_TARGET?.trim() || "http://127.0.0.1:8000";
|
||||
process.env.API_BASE_URL?.trim() || "http://127.0.0.1:8000";
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
allowedDevOrigins: ["192.168.0.101"],
|
||||
reactCompiler: true,
|
||||
|
||||
// 安全头配置 - 支持 iframe 嵌入
|
||||
// 非 CSP 安全头;CSP 由 middleware 按后台接入站点白名单动态生成。
|
||||
async headers() {
|
||||
return [
|
||||
{
|
||||
source: "/:path*",
|
||||
headers: securityHeaders,
|
||||
headers: nonCspSecurityHeaders,
|
||||
},
|
||||
];
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user