CJS => ESM
# yarn
$ yarn esm
$ yarn cjs# npm
$ npm run esm
$ npm run cjs
ESMusages
import NextMdx from '@next/mdx'; // ✅
// ...
NextMdx()OR
import * as NextMdx from '@next/mdx'; // ✅
// ...
NextMdx.default()| Name | Name | Last commit date | ||
|---|---|---|---|---|
CJS => ESM
# yarn
$ yarn esm
$ yarn cjs# npm
$ npm run esm
$ npm run cjs
ESMusages
import NextMdx from '@next/mdx'; // ✅
// ...
NextMdx()OR
import * as NextMdx from '@next/mdx'; // ✅
// ...
NextMdx.default()