Last active
December 11, 2019 16:50
-
-
Save allpwrfulroot/3be5c30aaadc85356eb86c96f8451ad6 to your computer and use it in GitHub Desktop.
Gists for Medium article
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const frontmatter = require('remark-frontmatter') | |
const withMDX = require('@next/mdx')({ | |
extension: /\.mdx?$/, | |
options: { | |
remarkPlugins: [frontmatter], | |
}, | |
}) | |
module.exports = withMDX({ | |
pageExtensions: ['js', 'jsx', 'mdx'], | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment