Open1

Next.jsのImageタグ中で任意の画像を利用する

shuyin02shuyin02
/** @type {import('next').NextConfig} */
const nextConfig = {
  images: {
    remotePatterns: [
      {
        hostname: '**',
        protocol: 'https'
      }
    ]
  }
};

export default nextConfig;

どうせすぐ変わる