Add missing comma to example webpack config

Close #671
This commit is contained in:
Tiaan
2017-10-04 10:51:24 +02:00
committed by Nicolas Gallagher
parent b08bfb9ad5
commit e91a5ae13e

View File

@@ -36,7 +36,7 @@ const babelLoaderConfiguration = {
cacheDirectory: true,
// This aliases 'react-native' to 'react-native-web' and includes only
// the modules needed by the app
plugins: ['react-native-web/babel']
plugins: ['react-native-web/babel'],
// The 'react-native' preset is recommended (or use your own .babelrc)
presets: ['react-native']
}