We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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'
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.
The text was updated successfully, but these errors were encountered:
@mbibko Fixed in #83
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
webpack.config.js
src/index.js
import './index.html'
src/index.html
src/img.jpg
simple image
When I run webpack, it generates index.html file with this html:
The first img tag has correct src, but the second src is undefined.
I think problem with extract-loader. Thanks for help.
The text was updated successfully, but these errors were encountered: