在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中文網其他相關文章!