I have one angular build files in public folder in revel appplication. I want to run those html and js files under revel application.
GET / Static.Serve("public")
I gave the above code in routes file. When I try in browser, it's showing "Forbidden Directory listing not allowed"
add these two line in routes file. Here all GET request will move to app controller Index function.
add below code in app controller file.