next-plugin-graphql
v0.0.2
Published
Next plugin for .graphql and .gql files using graphql-tag
Readme
Next.js + Graphql
Use Graphql files with Next.js
Installation
npm install next-plugin-graphqlor
yarn add next-plugin-graphqlUsage
Create a next.config.js in your project
// next.config.js
const withGraphql = require('next-plugin-graphql')
module.exports = withGraphql()Optionally you can add your custom Next.js configuration as parameter
// next.config.js
const withGraphql = require('next-plugin-graphql')
module.exports = withGraphql({
webpack(config, options) {
return config
}
})