Hi Everyone,
I'm trying to make working remark-shiki-twoslash. However it seems to me that remark-shiki-twoslash only evaluates code on server-side.
I have question is that even possible using this plugin to make it work client side to have all js interactions? If yes needs to be done something specific?
Or I have to go by custom solution outside of astro config?
export default defineConfig({
...
integrations: [
mdx({
syntaxHighlight: false,
remarkPlugins" [remarkShikiTwoslash.default],
}),
],
});
Does anybody has experience with that?