Closed
Description
I have a bunch of mdx components globally overridden like so:
mdxComponents(){
return {
p: Paragraph,
a: Anchor,
h1: H1,
h2: H2,
ul: UnorderedList,
ol: OrderedList,
li: ListItem,
b: Bold,
strong: Bold,
blockquote: Blockquote,
em: Italic,
img: Image,
}
}
and that shows up in dev but not in prod. Note I do have scoped stylesheets in those components, which seem to not be applying. Is that expected?
Activity