From a252bca92ce3f8ea95a6adecb7d4f527054c71b0 Mon Sep 17 00:00:00 2001 From: Jan Nicklas Date: Tue, 3 May 2016 08:43:08 +0200 Subject: [PATCH] Update README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 48b203e..d3d447b 100644 --- a/README.md +++ b/README.md @@ -94,8 +94,7 @@ Here's an example webpack config illustrating how to use these options: entry: 'index.js', output: { path: 'dist', - filename: 'index_bundle.js', - hash: true + filename: 'index_bundle.js' }, plugins: [ new HtmlWebpackPlugin({ @@ -138,8 +137,8 @@ and favicon files into the markup. plugins: [ new HtmlWebpackPlugin({ title: 'Custom template', - template: 'my-index.ejs', // Load a custom template - inject: 'body' // Inject all scripts into the body + template: 'my-index.ejs', // Load a custom template (ejs by default but can be changed) + inject: 'body' // Inject all scripts into the body (this is the default so you can skip it) }) ] ```