From e91a5ae13e6de70fa468775768311d0c0a188f76 Mon Sep 17 00:00:00 2001 From: Tiaan Date: Wed, 4 Oct 2017 10:51:24 +0200 Subject: [PATCH] Add missing comma to example webpack config Close #671 --- docs/guides/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/getting-started.md b/docs/guides/getting-started.md index ad0e57ba..16aa6ceb 100644 --- a/docs/guides/getting-started.md +++ b/docs/guides/getting-started.md @@ -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'] }