Ryan Naddy
Ryan Naddy
I have recently started having this issue. It was working last week till I ran `npm i` 
Here is my page content ```mdx Hi ``` Here is what is generated: ```javascript import React from 'react' import { mdx } from '@mdx-js/react' /* @jsxRuntime classic */ /* @jsx...
Adding these into my dependencies solved the issue. I think it was mostly because I was using `@mdx-js/react 2.x.x` ```json "@mdx-js/react": "^1.6.22", "react": "16.14.0", "react-dom": "16.14.0", ``` see: * https://github.com/storybookjs/storybook/issues/18094#issuecomment-1217135470...
After commenting these two lines out, and re-running storybook, the canvas loads properly.
Looks like this happens with a custom `previewBody` within the config.
Also, from time to time I get this result (Not sure if this is the compodoc or storybook): ``` ```html [object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object...
I would also like to use plugins, how can this be done? I am trying to use the [Command Line](https://prismjs.com/plugins/command-line/) plugin. ```js import "prismjs/components/prism-bash" import "prismjs/plugins/command-line/prism-command-line" ``` ```html cd /location...
Since this isn't maintained, and if you need it, just copy `src/index.js` to the support folder and import it within the `commands.js` file: ```js import './tab'; ``` Next change the...
I created a PR for anyone that is interested: #506
This seems to be working.