Allow list doesn't allow index.html

Couple unexpected behaviors when downloading a React project and running it locally.

First if I run the dev server and try and access /index.html is shows a 403 forbidden. Only after allowing index.html to the allow list in Vite am I able to view it.

Second, if I run pnpm build and then pnpm start, I get the following error in node-build.ts

Copilot fixed it for me replacing existing app.get with app.get(/.*/, (req, res) => {