Fix shared-ux storybook config (#205728)

## Summary

Follow up to https://github.com/elastic/kibana/pull/205602
This commit is contained in:
Anton Dosov 2025-01-07 16:21:31 +01:00 committed by GitHub
parent 3bb50f7048
commit 1388cdebb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,10 @@ import { defaultConfig } from '@kbn/storybook';
module.exports = {
...defaultConfig,
stories: ['../../../../../**/*.stories.+(tsx|mdx)'],
stories: [
'../../**/*.stories.+(tsx|mdx)',
'../../../../shared/shared-ux/**/*.stories.+(tsx|mdx)',
],
reactOptions: {
strictMode: true,
},