Skip to content
Compare
Choose a tag to compare
@primer-css primer-css released this 27 Jan 12:08
064df06

Minor Changes

  • #18 bfe68b1 Thanks @rezrah! - Upgraded internal framework to Nextra v3.

    To migrate Doctocat to this release, follow these steps:

    1. Install the latest version npm i @primer/[email protected]
    2. Rename your next.config.js to be next.config.mjs. Add type="module" to your package.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({
    
    +  }),
    +  }