emotion styles are being added to header by story book like below
<head>
<style data-emotion>
...
</style>
<style data-emotion>
...
</style>
<style data-emotion>
...
</style>
<style data-emotion>
...
</style>
...
</head>
CSP errors are being thrown because of the styles added to headers by emotion in storybook.
Emotion has a documentation of how to add nonce to styles - https://emotion.sh/docs/@emotion/cache#nonce-string
But how do we add this nonce to the theme which is added by storybook?
How to add nonce / avoid CSP issue in this case? Do I miss any storybook documentation, couldn't find any info regarding the same.