From a9cf827ec7955957ae1220b12809b32c8e386ba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Lign=C3=A9?= Date: Thu, 20 Feb 2020 07:59:09 +0100 Subject: [PATCH] Update example main.js for Ember Adds a missing `=` in the example that made it fail to run when copy/pasting it into a project. --- docs/src/pages/guides/guide-ember/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/guides/guide-ember/index.md b/docs/src/pages/guides/guide-ember/index.md index 13f2209763ab..101f59727d86 100644 --- a/docs/src/pages/guides/guide-ember/index.md +++ b/docs/src/pages/guides/guide-ember/index.md @@ -59,7 +59,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'], }; ```