@primer/next
v0.0.10
Published
Primer components and helpers for Next.js
Downloads
27
Readme
@primer/next
React components and helpers for Primer sites built with Next.js.
Features
- MDX support for pages with
.md
and.mdx
extensions - Conversion of
.svg
files into React components with SVGR - Sets
assetPrefix
toprocess.env.NOW_URL
, and exposes it to the client viapublicRuntimeConfig
Configuration
Configuration happens in your next.config.js
via what Zeit refers to as a "plugin" but is really just a function that generates a configuration object:
// next.config.js
const withPrimer = require('@primer/next/plugin')
module.exports = withPrimer({
// base Next config
}, {
// optional plugin options
})
or, if you just want the default setup, simply:
const withPrimer = require('@primer/next/plugin')
module.exports = withPrimer()
Pages
TBD