We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b49f4d5 commit e2a79caCopy full SHA for e2a79ca
app/.storybook/main.js
@@ -2,7 +2,7 @@ module.exports = {
2
stories: [
3
// display the Loop page as the first story int he list
4
'../src/__stories__/LoopPage.stories.tsx',
5
- '../src/**/*.stories.(ts|tsx|js|jsx|mdx)',
+ '../src/**/*.stories.@(ts|tsx|js|jsx|mdx)',
6
],
7
addons: [
8
'@storybook/preset-create-react-app',
@@ -17,5 +17,10 @@ module.exports = {
17
18
core: {
19
builder: 'webpack5'
20
- }
+ },
21
+ features: {
22
+ // Emotion11 quasi compatibility issue with storybook. Disabling feature flag to support emotion11.
23
+ // https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#emotion11-quasi-compatibility
24
+ emotionAlias: false,
25
26
};
0 commit comments