Jul 28, 2017 · 1 min read
Hi Glen,
Thanks for the kind words.
I’m not quite sure what the issue you are having is (perhaps open an issue over at http://github.com/storybooks/storybook if you can’t figure it out and we’ll go through a formal process).
This tutorial was written with Storybook@2 so it’s not impossible things have changed, but I’m suspect that’s not what it is.
I tried to reproduce your problem in a simple way, with these steps:
create-react-app tester
cd tester
echo "foobar" > public/file
yarn start# in another terminal
curl localhost:3000/file # outputs "foobar"# in first terminal
getstorybook
yarn storybook# in another terminal
curl localhost:9009/file # outputs "foobar"
This shows me that storybook was proxying the public directory correctly. Perhaps you could try something simple like that and see if you can nail down where the issue is exactly.
