File size: 767 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | const path = require('path')
module.exports = (pluginOptions = {
extension: /\.mdx?$/
}) => (nextConfig = {
pageExtensions: ['js', 'jsx', 'md', 'mdx']
}) => {
const extension = pluginOptions.extension || /\.mdx$/
return Object.assign({}, nextConfig, {
webpack(config, options) {
config.module.rules.push({
test: extension,
use: [
options.defaultLoaders.babel,
{
loader: '@mdx-js/loader',
options: pluginOptions.options
},
{
loader: path.resolve('.nextra', 'nextra-loader.js')
}
]
})
if (typeof nextConfig.webpack === 'function') {
return nextConfig.webpack(config, options)
}
return config
}
})
}
|