Next:​hostname “via.placeholder.com“ is not configured under images in your `next.config.js`​

当你在 Next.js 中使用 next/image 组件时,为了确保安全性,需要在 next.config.js 文件里配置允许使用的图片域名。你遇到的这个错误提示表明,https://via.placeholder.com/50 这个图片源的域名 via.placeholder.com 没有在 next.config.js 文件的 images 配置项中进行配置。

Error: Invalid src prop (https://via.placeholder.com/50) on `next/image`, hostname "via.placeholder.com" is not configured under images in your `next.config.js` See more info: `next/image` Un-configured Host | Next.js

在next.config.js中配置如果没有该文件直接创建即可 :

import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  /* config options here */
  reactStrictMode: true,
  images: {
    domains: ['via.placeholder.com'],
  },
};

export default nextConfig;

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值