Next.js Plugins
Official Next.js plugins
- @zeit/next-mdx
- @zeit/next-css
- @zeit/next-sass
- @zeit/next-less
- @zeit/next-stylus
- @zeit/next-preact
- @zeit/next-typescript
- @zeit/next-bundle-analyzer
- @zeit/next-source-maps
Community made plugins
- next-awesome-typescript
- next-compose-plugins
- next-images
- next-inferno
- next-offline
- next-optimized-images
- next-pino
- next-plugin-graphql
- next-testcafe-build
- next-runtime-dotenv
- next-progressbar
Adding a plugin
:warning: Before adding a plugin in this repository please create an issue to establish if it should be an official plugin or not.
Create a directory under the
packages
folderAdd
package.json
to the directory with these contents:{ "name": "@zeit/next-<NAME>", "version": "0.0.1", "main": "index.js", "license": "MIT", "repository": "zeit/next-plugins" }
Add a
index.js
file with the plugin codeAdd a
readme.md
explaining what the plugin does, how to install, and how to configure itSubmit a pull request