Files
wagtailcms-frontend/next.config.ts
T

15 lines
405 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
// Wagtail 后端媒体地址(开发环境 + 生产环境国内 OSS/CDN 域名)。
// 详见 documents/设计方案分析与完善版.md §2.3。
remotePatterns: [
{ protocol: "http", hostname: "localhost" },
{ protocol: "https", hostname: "**" },
],
},
};
export default nextConfig;