Add babel-plugin-import-graphql to your create-react-app app via react-app-rewired
For [email protected] use v2.x of this package. For [email protected] use v1.x of this package.
npm install --save react-app-rewire-inline-import-graphql-ast
# alternatively if you have yarn installed
yarn add react-app-rewire-inline-import-graphql-astIn the config-overrides.js you created for react-app-rewired add this code:
/* config-overrides.js */
const rewireInlineImportGraphqlAst = require('react-app-rewire-inline-import-graphql-ast');
module.exports = function override(config, env) {
config = rewireInlineImportGraphqlAst(config, env);
return config;
}This repo borrows heavily from react-app-rewire-styled-components by @withspectrum