Open1
Next.jsのImageタグ中で任意の画像を利用する
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: '**',
protocol: 'https'
}
]
}
};
export default nextConfig;
どうせすぐ変わる
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: '**',
protocol: 'https'
}
]
}
};
export default nextConfig;
どうせすぐ変わる