From 4874fe8a320ce0baf89816eb15044c85b28a38e0 Mon Sep 17 00:00:00 2001 From: Jan Nicklas Date: Fri, 5 Jun 2015 09:29:30 +0200 Subject: [PATCH] Use inject instead of the deprecated assets main object --- src/template_index.html | 1 - webpack.config.js | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/template_index.html b/src/template_index.html index 12b8c0c..9e418e2 100644 --- a/src/template_index.html +++ b/src/template_index.html @@ -7,6 +7,5 @@
- diff --git a/webpack.config.js b/webpack.config.js index f8b47f9..f04b139 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -37,7 +37,8 @@ var config = { }, plugins: [ new HtmlWebpackPlugin({ - template: './src/template_index.html' + template: './src/template_index.html', + inject: true }) ], postcss: [autoprefixer, csswring],