diff --git a/docs/source/recipes/webpack.md b/docs/source/recipes/webpack.md index 3fdfd87fa20..875cf41a6cf 100644 --- a/docs/source/recipes/webpack.md +++ b/docs/source/recipes/webpack.md @@ -54,8 +54,13 @@ export default graphql(currentUserQuery)(Profile) [FuseBox](http://fuse-box.org) can't use the Webpack loaders. To make the same transformation work in FuseBox, use [fuse-box-graphql-plugin](https://github.com/otothea/fuse-box-graphql-plugin). ## React native + [React native](https://facebook.github.io/react-native/) can't use the Webpack loaders. To make the same transformation work in React native, use [babel-plugin-inline-import-graphql-ast](https://github.com/detrohutt/babel-plugin-inline-import-graphql-ast). +## Create-React-App + +[react-app-rewire-inline-import-graphql-ast](https://github.com/detrohutt/react-app-rewire-inline-import-graphql-ast/) is available for users of [create-react-app](https://github.com/facebook/create-react-app/) that would like to use graphql files without needing to eject the app first. + ## Fragments You can use and include fragments in .graphql files and have webpack include those dependencies for you, similar to how you would use fragments and queries with the gql tag in plain JS.