diff --git a/docs/src/pages/guides/guide-marko/index.md b/docs/src/pages/guides/guide-marko/index.md index 1cef3e554b08..59dc9e4c7850 100644 --- a/docs/src/pages/guides/guide-marko/index.md +++ b/docs/src/pages/guides/guide-marko/index.md @@ -53,7 +53,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story To do that, create a file at `.storybook/main.js` with the following content: ```js -module.exports { +module.exports = { stories: ['../src/**/*.stories.[tj]s'], }; ``` diff --git a/docs/src/pages/guides/guide-mithril/index.md b/docs/src/pages/guides/guide-mithril/index.md index a3e678b4aa9b..bf23ad142e3d 100644 --- a/docs/src/pages/guides/guide-mithril/index.md +++ b/docs/src/pages/guides/guide-mithril/index.md @@ -54,7 +54,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story To do that, create a file at `.storybook/main.js` with the following content: ```js -module.exports { +module.exports = { stories: ['../src/**/*.stories.[tj]s'], }; ``` diff --git a/docs/src/pages/guides/guide-preact/index.md b/docs/src/pages/guides/guide-preact/index.md index ad59164a42fe..151a6d59773d 100644 --- a/docs/src/pages/guides/guide-preact/index.md +++ b/docs/src/pages/guides/guide-preact/index.md @@ -54,7 +54,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story To do that, create a file at `.storybook/main.js` with the following content: ```js -module.exports { +module.exports = { stories: ['../src/**/*.stories.[tj]s'], }; ``` diff --git a/docs/src/pages/guides/guide-rax/index.md b/docs/src/pages/guides/guide-rax/index.md index 0d9d748db097..6a0f2afb7eb2 100644 --- a/docs/src/pages/guides/guide-rax/index.md +++ b/docs/src/pages/guides/guide-rax/index.md @@ -54,7 +54,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story To do that, create a file at `.storybook/main.js` with the following content: ```js -module.exports { +module.exports = { stories: ['../src/**/*.stories.[tj]s'], }; ``` diff --git a/docs/src/pages/guides/guide-riot/index.md b/docs/src/pages/guides/guide-riot/index.md index 8a12f01d364a..af459b3eb52f 100644 --- a/docs/src/pages/guides/guide-riot/index.md +++ b/docs/src/pages/guides/guide-riot/index.md @@ -53,7 +53,7 @@ For a basic Storybook configuration, the only thing you need to do is tell Story To do that, create a file at `.storybook/main.js` with the following content: ```js -module.exports { +module.exports = { stories: ['../src/**/*.stories.[tj]s'], }; ```