fix(webpack): Fix not resolving .json

Change-Type: patch
This commit is contained in:
Jonas Hermsmeier 2018-02-27 18:26:05 +01:00
parent dcbe41bc40
commit 81b5016168
No known key found for this signature in database
GPG Key ID: 1B870F801A0CEE9F

View File

@ -68,6 +68,6 @@ module.exports = {
]
},
resolve: {
extensions: [ '.js', '.jsx' ]
extensions: [ '.js', '.jsx', '.json' ]
}
}