work with a project using theme-ui library which make use of the jsx paragma so in the beginning of every file I have
/** @jsx jsx */ import { jsx } from '@theme-ui/core'; I want to add storybook 6 to my project, when I add storybook I always get an error of pragma and pragmaFrag cannot be set when runtime is automatic.
I tried to override the babel config on .storbook/main.js but no luck
and I also tried to add
babel: async (options) => ({
...options,
presets: [
...options.presets,
[
"@babel/preset-react",
{
runtime: "classic"
}
]
]
})
to storbook/main.js but also didn't work