Last active
June 9, 2018 16:35
-
-
Save ssougnez/bd3f0c9becd48c3b0b41bc9d1a83a02c 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
| const HtmlWebpackPlugin = require("html-webpack-plugin"); | |
| module.exports = { | |
| module: { | |
| ... | |
| }, | |
| plugins: [ | |
| new HtmlWebpackPlugin({ | |
| template: './src/index.html' | |
| }) | |
| ] | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment