Skip to content

Instantly share code, notes, and snippets.

@harshaktg
Created September 8, 2020 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harshaktg/e39688a9300d232565c6f8e73ff0f10f to your computer and use it in GitHub Desktop.
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