Created
November 27, 2017 05:03
-
-
Save zouhir/bb52d142fcf4ba871d2796b10cef7ebd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- print it as --> | |
<h1><%= htmlWebpackPlugin.options.SOME_VAR %></h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default (config, env, helpers) => { | |
let htmlPlugin = helpers.getPluginsByName(config, "HtmlWebpackPlugin")[0]; | |
htmlPlugin.plugin.options.SOME_VAR = 'var-value'; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment