mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
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:
commit
feec51e4eb
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user