Skip to content

Instantly share code, notes, and snippets.

@harshaktg
Created September 8, 2020 10:12
Show Gist options
  • Select an option

  • Save harshaktg/e39688a9300d232565c6f8e73ff0f10f to your computer and use it in GitHub Desktop.

Select an option

Save harshaktg/e39688a9300d232565c6f8e73ff0f10f to your computer and use it in GitHub Desktop.
Webpack HTML Config
const HTMLWebpackPlugin = require('html-webpack-plugin')
const path = require('path')
module.exports = {
plugins: [
new HTMLWebpackPlugin({
template: path.resolve(__dirname, "source", "index.html")
})
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment