Skip to content

Image

报错 hostname "127.0.0.1" is not configured under images in your next.config.js 的解决方法

在 next.config.js 中配置

js
module.export = {
  images: {
    domains: ['127.0.0.1'],
    formats: ['image/avif', 'image/webp'],
  },
}

TIP

配置项修改后需要重新启动服务