23 lines
467 B
TypeScript
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;
|