I have the following rule inside my TOML file:
[[redirects]]
from = “/*”
to = “/index.html”
status = 200
However, I’d like to exclude a specific route from being redirected:
https://www.mysite.netlify.app/storybook
When this storybook route is being matched, I want Netlify to serve the build/storybook/index.html file, and not the main SPA (build/index.html) file.
How can this be achieved?