这应该很容易,但它根本不起作用。使用 sinatra-assetpack 运行 Padrino。所有的 css 文件都像这样完美地服务:
serve '/stylesheets', from: '/app/stylesheets'
css :shared, [
'/stylesheets/reset.css',
'/stylesheets/runemadsen.css'
]
但是当尝试提供 .js 文件时,它不起作用。我在脚本加载中得到 404:
serve '/javascripts', from: '/app/javascripts'
js :shared, [
'/javascripts/jquery.js'
]
我真的不明白。这是完全相同的代码。文件在那里。有小费吗?