Can I customize the Email Verification Success page (I'm not referring to the email that's sent)?

Ok, this sort of makes sense. Am I supposed to have a client for each “environment” of my application? I’ve got a demo environment and a prod environment. How would I redirect to the right environment? Say demo is at demo.example.com and production is example.com. The help page you linked suggests I could do something like {% if application.clientID == 'WY...' %} http://jwt.io {% else %} http://auth0.com {% endif %}.

But that’d require having a client for each environment. I suppose that’s expected, since each client requires a type, such as SPA, native app, etc. Is that right?