これが私の現在のセットアップです。
// next.config.js
const withImages = require("next-images");
module.exports = withImages({
webpack(config, options) {
return config;
},
});
このコードを追加して、ドメインからの画像を許可しますlocalhost:3001
。
images: {
domains: ['localhost:3001'],
},