Yi EungJun 2015-04-03
Fix three warnings when compile conf/routes
According to a comment from github [1], the warnings can be elimiated by
flipping the order of the routing rules.

[1]:https://github.com/playframework/playframework/issues/3360#issuecomment-5409698://github.com/playframework/playframework/issues/3360#issuecomment-54096985
@10783496dbe23438bda854c85cb8fc3294091876
conf/routes
--- conf/routes
+++ conf/routes
@@ -10,9 +10,9 @@
 # Home page
 GET            /                                                                      controllers.Application.index()
 # Map static resources from the /public folder to the /assets URL path
-GET            /assets/*file                                                          controllers.Assets.at(path="/public", file)
 GET            /messages.js                                                           controllers.Application.jsMessages()
 GET            /favicon.ico                                                           controllers.Assets.at(path="/public", file="images/favicon.ico")
+GET            /assets/*file                                                          controllers.Assets.at(path="/public", file)
 
 # Bootstrapping for test
 GET            /init                                                                  controllers.Application.init()
Add a comment
List