这是我目前的设置。
// next.config.js
const withImages = require("next-images");
module.exports = withImages({
webpack(config, options) {
return config;
},
});
我想添加此代码以允许来自域的图像localhost:3001
。
images: {
domains: ['localhost:3001'],
},
这是我目前的设置。
// next.config.js
const withImages = require("next-images");
module.exports = withImages({
webpack(config, options) {
return config;
},
});
我想添加此代码以允许来自域的图像localhost:3001
。
images: {
domains: ['localhost:3001'],
},
您只需将该images
对象添加到传递给withImages
.
// next.config.js
const withImages = require("next-images");
module.exports = withImages({
images: {
domains: ['localhost:3001']
},
webpack(config, options) {
return config;
}
});
我认为你应该设置assetPrefix,阅读文档中的选项
// next.config.js
const withImages = require('next-images')
module.exports = withImages({
assetPrefix: 'https://example.com',
dynamicAssetPrefix: true,
webpack(config, options) {
return config
}
}