From b78206d2f4f0727ccf1dd9490450e17bbda46424 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Mon, 8 Jan 2018 11:49:28 -0800 Subject: [PATCH] Remove 'transform-runtime' from webpack example --- website/guides/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/guides/getting-started.md b/website/guides/getting-started.md index f1d79748..36d16563 100644 --- a/website/guides/getting-started.md +++ b/website/guides/getting-started.md @@ -182,7 +182,7 @@ const babelLoaderConfiguration = { // Babel configuration (or use .babelrc) // This aliases 'react-native' to 'react-native-web' and includes only // the modules needed by the app. - plugins: ['react-native-web', 'transform-runtime'], + plugins: ['react-native-web'], // The 'react-native' preset is recommended to match React Native's packager presets: ['react-native'] }