I've got a problem running my Play framework app on stage mode.
If I run the app on dev mode, with play run
for instance, everything is ok.
If I compile the app with play compile clean stage
, and then use start
, all my assets are unreachable (I get a 404 error).
I'm aware of the bug/feature about empty files, but that's actually not the case here.
My route is the same as the doc:
GET /assets/*file controllers.Assets.at(path="/public", file)
Can anybody help me ? Thanks !