fix(core): disable micromark debug output (#6528)

This commit is contained in:
pengx17
2024-04-12 03:58:53 +00:00
parent 4a67c84c73
commit 8769aef0aa

View File

@@ -18,7 +18,7 @@ if (typeof window !== 'undefined') {
console.warn('Debug logs enabled');
}
if (process.env.NODE_ENV === 'development') {
debug.enable('*');
debug.enable('*,-micromark');
console.warn('Debug logs enabled');
}
}