You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if you use react-native start --projectRoot storybook and have a local import in that folder that uses babel-plugin-inline-import, the resolved path will be wrong and the import will fail.
e.g. in file storybook/storybook.js you have this:
import schema from './schema.graphql'
this will throw
bundling failed: Error: Path './schema.graphql' could not be found for '/path/to/project/storybook.js'
The path /path/to/project/storybook.js is suspicious, because this does not exist. it should be /path/to/project/storybook/storybook.js