Minor Changes
-
#18
bfe68b1
Thanks @rezrah! - Upgraded internal framework to Nextra v3.To migrate Doctocat to this release, follow these steps:
- Install the latest version
npm i @primer/[email protected]
- Rename your
next.config.js
to benext.config.mjs
. Addtype="module"
to yourpackage.json
and update the file contents to match the following:
- const withDoctocat = require('@primer/doctocat-nextjs/doctocat.config.js') - module.exports = { - ...withDoctocat({ - }), - } + import withDoctocat from '@primer/doctocat-nextjs/doctocat.config.js' + export default { + ...withDoctocat({ + }), + }
- Install the latest version