Description
webpack.config.js
mode: 'development',
module: {
rules: [
{
test: /\.html$/i,
use: ['file-loader?name=[name].[ext]', 'extract-loader', 'html-loader'],
},
{
test: /\.jpg$/,
use: ['file-loader?name=[name].[ext]'],
}
],
},
};
src/index.js
import './index.html'
src/index.html
<img src="img.jpg">
<img src="img.jpg">
src/img.jpg
simple image
When I run webpack, it generates index.html file with this html:
<img src="img.jpg">
<img src="undefined">
The first img tag has correct src, but the second src is undefined.
I think problem with extract-loader. Thanks for help.
Metadata
Metadata
Assignees
Labels
No labels