From 81b50161682db77c5d3da6ede27a8f1716db15d4 Mon Sep 17 00:00:00 2001 From: Jonas Hermsmeier Date: Tue, 27 Feb 2018 18:26:05 +0100 Subject: [PATCH] fix(webpack): Fix not resolving .json Change-Type: patch --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 7e4360c0..57fabea2 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -68,6 +68,6 @@ module.exports = { ] }, resolve: { - extensions: [ '.js', '.jsx' ] + extensions: [ '.js', '.jsx', '.json' ] } }