feat: scaffold headless frontend integration per design doc

This commit is contained in:
2026-08-06 15:51:59 +08:00
parent b0919bf8b5
commit 7e30631c68
28 changed files with 708 additions and 126 deletions
+8 -1
View File
@@ -1,7 +1,14 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
// Wagtail 后端媒体地址(开发环境 + 生产环境国内 OSS/CDN 域名)。
// 详见 documents/设计方案分析与完善版.md §2.3。
remotePatterns: [
{ protocol: "http", hostname: "localhost" },
{ protocol: "https", hostname: "**" },
],
},
};
export default nextConfig;