mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
Merge pull request #14849 from storybookjs/adjust_community_frameworks
Chore: (Docs): Community frameworks location updated
This commit is contained in:
commit
af6a8d5056
@ -1,2 +1,2 @@
|
||||
- You can also setup Storybook manually through the Storybook CLI. Add the `--type marko` flag when you initialize Storybook in your project.
|
||||
- If there's an installation problem, check the [README for the Marko framework](../../app/marko/README.md).
|
||||
- If there's an installation problem, check the [README for the Marko framework](https://github.com/storybookjs/marko).
|
||||
|
@ -1,2 +1,2 @@
|
||||
- You can also setup Storybook manually through the Storybook CLI. Add the `--type mithril` flag when you initialize Storybook in your project.
|
||||
- If there's an installation problem, check the [README for the Mithril framework](../../app/mithril/README.md).
|
||||
- If there's an installation problem, check the [README for the Mithril framework](https://github.com/storybookjs/mithril).
|
||||
|
@ -1,2 +1,2 @@
|
||||
- You can also setup Storybook manually through the Storybook CLI. Add the `--type rax` flag when you initialize Storybook in your project.
|
||||
- If there's an installation problem, check the [README for the Rax framework](../../app/rax/README.md).
|
||||
- If there's an installation problem, check the [README for the Rax framework](https://github.com/storybookjs/rax).
|
||||
|
@ -1,2 +1,2 @@
|
||||
- You can also setup Storybook manually through the Storybook CLI. Add the `--type riot` flag when you initialize Storybook in your project.
|
||||
- If there's an installation problem, check the [README for the Riot framework](../../app/riot/README.md).
|
||||
- If there's an installation problem, check the [README for the Riot framework](https://github.com/storybookjs/riot/).
|
||||
|
@ -1,12 +1,14 @@
|
||||
```ts
|
||||
// mithril/src/server/framework-preset-mithril.ts
|
||||
// app/mithril/src/server/framework-preset-mithril.ts
|
||||
|
||||
import { TransformOptions } from '@babel/core';
|
||||
|
||||
export function babelDefault(config: TransformOptions) {
|
||||
return {
|
||||
...config,
|
||||
plugins: [
|
||||
...config.plugins,
|
||||
require.resolve('@babel/plugin-transform-react-jsx')
|
||||
...config.plugins,
|
||||
[require.resolve('@babel/plugin-transform-react-jsx'), {}, 'preset'],
|
||||
],
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user