From 241cd540028e44cd4c6045afa9f937d38ea06f9b Mon Sep 17 00:00:00 2001 From: Claudio Ludovico <921500+ludo237@users.noreply.github.com> Date: Tue, 14 Jan 2020 11:38:47 +0100 Subject: [PATCH] Add missing `=` on module export --- docs/src/pages/guides/guide-vue/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/guides/guide-vue/index.md b/docs/src/pages/guides/guide-vue/index.md index a50d20ea87bd..5b79cd0b22b7 100644 --- a/docs/src/pages/guides/guide-vue/index.md +++ b/docs/src/pages/guides/guide-vue/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'], }; ```