如何让Rails的四个目录"fonts, images, scripts and stylesheets"显示在Safari的页面资源中?
How to make Rails's four directories "fonts, images, scripts and stylesheets" displayed in Safari's page resources?
Rails版本:3.2.21
当我运行一个项目vish, when accessing "http://localhost:3000”并打开Safari的"show page source"时,在左侧有四个目录fonts, images, scripts and stylesheet
,如下图所示:
当我基于相同平台构建自己的rails应用程序项目时,localhost
下除了文件外没有其他目录:
这样的效果应该怎么做?我应该配置哪些选项?
在config/environments/development.rb
中,有一个选项叫assets.debug
,默认值为false
,如果要查看以上所有目录,将值改为true
:
# Expands the lines which load the assets
config.assets.debug = true
Rails版本:3.2.21
当我运行一个项目vish, when accessing "http://localhost:3000”并打开Safari的"show page source"时,在左侧有四个目录fonts, images, scripts and stylesheet
,如下图所示:
当我基于相同平台构建自己的rails应用程序项目时,localhost
下除了文件外没有其他目录:
这样的效果应该怎么做?我应该配置哪些选项?
在config/environments/development.rb
中,有一个选项叫assets.debug
,默认值为false
,如果要查看以上所有目录,将值改为true
:
# Expands the lines which load the assets
config.assets.debug = true