Skip to content

Commit

Permalink
Merge pull request #10129 from Shajansheriff/patch-3
Browse files Browse the repository at this point in the history
Change src to app path
  • Loading branch information
ndelangen authored Mar 16, 2020
2 parents d718ad6 + e769e6d commit b8e64b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/pages/guides/guide-ember/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ To do that, create a file at `.storybook/main.js` with the following content:

```js
module.exports = {
stories: ['../src/**/*.stories.[tj]s'],
stories: ['../app/**/*.stories.[tj]s'],
};
```

That will load all the stories underneath your `../src` directory that match the pattern `*.stories.js`. We recommend co-locating your stories with your source files, but you can place them wherever you choose.
That will load all the stories underneath your `../app` directory that match the pattern `*.stories.js`. We recommend co-locating your stories with your source files, but you can place them wherever you choose.

## Write your stories

Expand Down

0 comments on commit b8e64b1

Please sign in to comment.