Last active
February 1, 2018 11:50
-
-
Save yohangz/6a23e075fe7c5513bda3085affbf5648 to your computer and use it in GitHub Desktop.
Play react routs file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Routes | |
# This file defines all application routes (Higher priority routes first) | |
# ~~~~ | |
# Serve index page from public directory | |
GET / controllers.FrontendController.index() | |
# An example route (Prefix all API routes with apiPrefix defined in application.conf) | |
GET /api/summary controllers.HomeController.appSummary | |
# Serve static assets under public directory | |
GET /*file controllers.FrontendController.assetOrDefault(file) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment