Hi, I’m looking for a feature that one entry point for Netlify functions/middleware, something similar to Advanced mode | Cloudflare Pages docs. Is it possible?
I’m not too familiar with it, but it seems like the only thing Advanced mode does is give you a way to handle the routing yourself? If so you can either:
- Use Express on Netlify: Express on Netlify | Netlify Docs
- Or set path == ‘/*’ in the Function’s config so all requests go to the Function and you can then handle the routing yourself.
1 Like
Yeah, that is what I’m looking for, thank you.