Merge pull request #16114 from storybookjs/fetch-correct-stories-json

Core: Fix `./stories.json` requests in manager for relative paths
This commit is contained in:
Michael Shilman 2021-09-21 19:26:56 +08:00 committed by GitHub
commit feec51e4eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -351,7 +351,7 @@ export const init: ModuleFn = ({
},
fetchStoryList: async () => {
// This needs some fleshing out as part of the stories list server project
const result = await global.fetch('/stories.json');
const result = await global.fetch('./stories.json');
const storyIndex = (await result.json()) as StoryIndex;
// We can only do this if the stories.json is a proper storyIndex