Open odanado opened 2 years ago
Here is delete options.use. https://github.com/nuxt-community/markdownit-module/blob/d615e56dcc72ad9f4b8b8a443e4970d7637e1d75/src/runtime/plugin.js#L10
delete options.use
This code unintentionally changes the moduleLoader option. https://github.com/nuxt-community/markdownit-module/blob/d615e56dcc/src/module.ts#L22
Specifying runtime: false solves this problem, but $md.render will not be available
runtime: false
$md.render
minimal reproduction repository: https://github.com/odan-sandbox/nuxt-markdown-it-plugin-sandbox Related: https://github.com/nuxt-community/markdownit-module/issues/29
Here is
delete options.use
. https://github.com/nuxt-community/markdownit-module/blob/d615e56dcc72ad9f4b8b8a443e4970d7637e1d75/src/runtime/plugin.js#L10This code unintentionally changes the moduleLoader option. https://github.com/nuxt-community/markdownit-module/blob/d615e56dcc/src/module.ts#L22
Specifying
runtime: false
solves this problem, but$md.render
will not be availableminimal reproduction repository: https://github.com/odan-sandbox/nuxt-markdown-it-plugin-sandbox Related: https://github.com/nuxt-community/markdownit-module/issues/29