Closed wusatosi closed 4 years ago
I'm having the same problem. Did you resolve it?
Same problem as well.
Hello - I'm sorry to say that this plugin is no longer being maintained. I have tried to close all issues ahead of doing this but instead have found that the issue list just keeps growing. I simply do not have the time to keep up. Sorry. Please keep an eye on the README where I will record anyone who forks this repo with the intention to supporting it in the future.
Inline option is not working for me... Can anyone help me?
My web-pack version: 4.16.3 html-webpack-plugin version: 3.2.0
My webpack.config.js:
My app.js (entry)
require('./a');
a.js (script I want to inline)
console.log('yes');
Output html:
Expect: a.js is inline to the output html as
<script>console.log('yes');</script>
Which is: Not happening