broccolijs / broccoli

Browser compilation library – an asset pipeline for applications that run in the browser
https://broccoli.build
MIT License
3.33k stars 217 forks source link

Broccoli server [file serving] web navigation API support #425

Open lifeart opened 5 years ago

lifeart commented 5 years ago

broccoli server able to detect index.html files on path requests like

/foo -> /foo/index.html and return it.

But, If we use livereload and js-based app navigation, broccoli don't drill down to root index.html for requests like:

/foo/bar

-> current lookup: foo/bar/index.html, 404

-> expected lookup: /foo/bar/index.html, /foo/index.html, index.html, 404