Merge pull request #2091 from resin-io/webpack-json

fix(webpack): Fix not resolving .json
This commit is contained in:
Jonas Hermsmeier 2018-02-27 13:19:59 -08:00 committed by GitHub
commit d0faf9bc2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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