From 77f32a3d4ee71ff09e2dc9f26e8474c64e18a737 Mon Sep 17 00:00:00 2001 From: Jason Meller Date: Thu, 19 Jan 2017 12:14:43 -0500 Subject: [PATCH] Don't inject a duplicate script tag in react.tmpl (#1030) --- webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.js b/webpack.config.js index e3c4713c37..157e1e4f8d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -14,6 +14,7 @@ var plugins = [ new webpack.optimize.DedupePlugin(), new HtmlWebpackPlugin({ filename: '../frontend/templates/react.tmpl', + inject: false, template: 'frontend/templates/react.ejs' }) ];