我无法在 Scala 中反转我的路线,因为我在我的视图中包含了一个引导 css 文件。
这是我的引导文件链接:
<link href="@routes.Assets.at("bootstrap/dist/css/bootstrap.css")" rel="stylesheet"/>
这是我的路线:
GET /assets/*file controllers.Assets.at(path="public", file)
这是我的文件路径:
/public/bootstrap/dist/css$ ls
bootstrap.css bootstrap-theme.css index.html
bootstrap.min.css bootstrap-theme.min.css index.html.1
我在这里做错了什么?
谢谢!