Allow Image ทุก Domains ใน Next.js

Web Development

Allow Image ทุก Domains ใน Next.js

9 เดือนที่ผ่านมา

1 min read

Table of Contents

next.config.js

module.exports = {
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "**",
      },
    ],
  },
};

Reference

Tags:

Next.js