在Next.js中,从外部域加载图像需要在next.config.js中进行配置。您可以通过使用带有通配符的remotePatterns或通过未优化完全禁用图像优化来允许来自所有域的图像。
import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: "https", hostname: "*", // Allow images from all domains }, ], }, }; export default nextConfig;
import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { unoptimized: true, // Disable image optimization }, }; export default nextConfig;
这种方法有助于处理动态图像源并绕过域限制。 ?
以上是允许 Next.js 中图像的所有域的详细内容。更多信息请关注PHP中文网其他相关文章!