react-md-editor
react-md-editor copied to clipboard
Bullet list and number list are not showing properly in preview
Hello, I just have a basic setup of the MDEditor component with Next.js.

All list including number and bullet list are not showing properly in the preview as shown

Below are the versions of Next.js and react-md-editor used
"next": "13.1.1",
"@uiw/react-md-editor": "^3.20.2",
Thanks for your help and please let me know if I have to provide more information :)
I have tried light mode and didn't solve the issue, the bullets and numbers are still missing
This is my next.config.mjs
// @ts-check
import removeImports from "next-remove-imports";
/**
* Don't be scared of the generics here.
* All they do is to give us autocompletion when using this.
*
* @template {import('next').NextConfig} T
* @param {T} config - A generic parameter that flows through to the return type
* @constraint {{import('next').NextConfig}}
*/
function defineNextConfig(config) {
return removeImports()(config);
}
export default defineNextConfig({
reactStrictMode: true,
swcMinify: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
},
});
I am having the same issue!