Play Framework has the file routes. This file list all the routes needed by the application. By default, the route file has a line:
# Catch all
* /{controller}/{action} {controller}.{action}
How to safely use it in production mode? Do I need to comment this line out?