next-plugin-mini-graphql
v0.0.3
Published
Provides Next.js support for `.graphql` files using `graphql-mini-transforms`
Downloads
12
Readme
Next Plugin Mini GraphQL
Provides Next.js support for .graphql
files using graphql-mini-transforms
.
Installation
npm install next-plugin-mini-graphql # if using npm
yarn add next-plugin-graphql # if using yarn
Usage
Create a next.config.js
in your project
// next.config.js
const withGraphql = require('next-plugin-mini-graphql');
module.exports = withGraphql();
Optionally you can add your custom Next.js configuration as parameter
// next.config.js
const withGraphql = require('next-plugin-mini-graphql');
module.exports = withGraphql({
webpack(config, options) {
return config;
},
});