-
Hey, Now I wanted to extend my App by a blog that uses static site generation with The problem: resetting the initial CSS with the Is there a way to NOT render that I don't want to hardcode every single blog-page HTML because that would make the app pretty much unmaintainable. Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You have a couple of options here.
|
Beta Was this translation helpful? Give feedback.
You have a couple of options here.
useRouter
to check the current path, and if it's not/whatever-route
you want, then don't render<CSSReset />
MDXProvider
to forward Chakra UI components. Here's an example