Difference of behaviour between serve and http-server
Hi, we have noticed some discrepancies between serve and http-server when opening a Storybook static export.
Issue is described here: https://github.com/storybookjs/storybook/issues/10933
To sum it up, with http-server the first story opens correctly, but not with serve, which seems a bit less reliable for yet unknown reasons.

While you should get this (this is the result with http-server):

It sounds like a failing redirection but I have no log message.
I have a reproduction, but not minimal, in Vulcan Next. That may still help to debug.
git clone https://github.com/VulcanJS/vulcan-next.git
cd vulcan-next
yarn
yarn build:storybook
serve storybook-static # this will mostly work but not reliably, while http-server will work ok
serve needs at least cleanUrl:false option
cleanUrls seems to break everything for me:

See https://github.com/vercel/next.js/pull/18775 for a reproducible minimal example
Any update on this @eric-burel? We can't use http-server because it doesn't compress files.
I can't think of other solutions 🤔
Haven't checked in a while! Do you still have this issue? You'll probably want to access the right URL directly, maybe smth like "/index.html".
Yep, problem still exists! We ended up using static-web-server.
I'm curious what the difference is between serve and https-server🤔