默认 URL 结构是 http://localhost:5000/_next/image?url="someURL"。
我希望 URL 类似于http://localhost:5000/demo/_next/image?url="someURL"。
这可以通过
// next.config.js
images: {
domains: ['example.domain.com'],
path: `/demo/_next/image`
},
在这里,找不到目录指向的_next/image 。
在此之后,所有的图像都给 404。我需要在下一个 js 中解决这个问题。