From a9d81194714c0e248c580ce971b7014ab8dc1ee8 Mon Sep 17 00:00:00 2001 From: Matthew Taylor Date: Fri, 16 Oct 2015 15:09:06 -0400 Subject: [PATCH] Allow loader to work with json correctly It was trying to parse it as js before --- webpack.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 8e7d0bd27..ba6f26988 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -37,8 +37,7 @@ module.exports = { }, { test: /\.json$/, - loader: 'json-loader', - include: path.resolve(__dirname, 'src') + loader: 'json-loader' }, { test: /\.scss$/,