mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:31:05 +08:00
11 lines
283 B
Plaintext
11 lines
283 B
Plaintext
```js
|
|
// .storybook/main.js|ts
|
|
|
|
module.exports = {
|
|
stories: ['../stories/**/*.stories.mdx', '../stories/**/*.stories.@(js|jsx|ts|tsx)'],
|
|
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
|
|
features: {
|
|
previewMdx2: true, // 👈 MDX 2 enabled here
|
|
},
|
|
};
|
|
``` |