我收到以下消息:
Error: Invalid src prop (https://storage.googleapis.com/agrf-upload/abcd.png) on `next/image`, hostname "storage.googleapis.com" is not configured under images in your `next.config.js`
See more info: https://nextjs.org/docs/messages/next-image-unconfigured-host
但我的next.config.js如下所示:
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['storage.googleapis.com', 'www.coinpayments.net', 'coinpayments.net'],
},
compiler: {
removeConsole: false,
},
images: {
minimumCacheTTL: 1500000,
},
swcMinify: true
}
module.exports = nextConfig
在我重新启动笔记本电脑之前,它一直工作得很好。我现在毫无头绪。请帮我整理一下。
2条答案
按热度按时间t3psigkw1#
我在配置中有另一个图像部分,它干扰了上面的图像块(用于指定域):
所以现在我更新的next.config.js看起来像这样:
wn9m85ua2#
推荐我: