faustinoaq changed the topic of #amber to: Welcome to Amber Framework community! | https://amberframework.org | Developer happiness, productivity and bare metal performance | GH: https://github.com/amberframework | Docs: https://docs.amberframework.org | Gitter: https://gitter.im/amberframework/amber | IRC Logger: https://irclog.whitequark.org/amber | Amber::Server.start
<FromGitter> <damianham> @andrewc910 I don't recall if Webpack HMR worked in the react recipes but I seem to remember one project based on a recipe where it didn't hot reload. Sorry for the past few months I have been working on an Amber project that is not based on a recipe and instead I built from scratch and is organised as multiple modular React SPAs, one for each principle route.
<FromGitter> <damianham> Does Amber support optional route params e.g. GET "/redeem/:token/:user_id?" where user_id param may nor may not be present? Reading the routes code it doesn't look like it does.
<FromGitter> <eliasjpr> @damianham I don’t think the routing supports optional params in the url. Instead you can create two routes that points to the same controller
<FromGitter> <damianham> @eliasjpr yeah that's what I did. I was just looking to DRY it up