Files
zzTaiko/next.config.ts
2025-12-19 14:46:28 +08:00

23 lines
467 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '*.public.blob.vercel-storage.com',
pathname: '/**',
},
// 添加其他可能的 Blob 存储域名
{
protocol: 'https',
hostname: '*.blob.vercel-storage.com',
pathname: '/**',
},
],
},
};
export default nextConfig;