SB docs point to ember framework docs

This commit is contained in:
Michael Shilman 2019-12-14 12:03:26 +08:00
parent 3b43c73753
commit 3fcf4ec87a

View File

@ -131,8 +131,10 @@ Add the following to your Jest configuration:
### Be sure to check framework specific installation needs
- [Angular](./angular)
- [React](./react) (covered here)
- [Vue](./vue)
- [Angular](./angular)
- [Ember](./ember)
- [Web Components](./web-components)
## Preset options
@ -164,11 +166,10 @@ If you don't want to use the preset, and prefer to configure "the long way", fir
```js
module.exports = {
addons: ['@storybook/addon-docs/register']
addons: ['@storybook/addon-docs/register'],
};
```
Then configure Storybook's webpack loader in `.storybook/main.js` to understand MDX story files and annotate TS/JS story files with source code using `source-loader`:
```js
@ -201,7 +202,7 @@ module.exports = {
enforce: 'pre',
});
return config;
}
},
};
```