app/assets
directory.config/assets.rb
.assets
sub-directories: stylesheets
, scripts
, images
and fonts
are included in the asset pipeline.blog
sub-directory is also included in the asset pipeline.stylesheets
sub-directory of the asset pipeline contains all of the stylesheets of the application.partials
folder within this sub-directory that should contain all of the partial stylesheets used in your application._breakpoints.scss
__partials__.scss
file, which simply acts as a single file that imports all of the partial files. This makes it easier to include all of the partials into a stylesheet by doing the following, rather than including each partial individually:scss
and the default script compressor/minifier is uglify
.app/assets/images/favicon.ico
/assets/favicon.ico
app/assets/images/logo.png
/assets/logo.png
app/assets/stylesheets/index.css
/assets/index.css
app/assets/javascripts/index/nav.js
/assets/index/nav.js
app/assets/images/posts/2018/2/1/hi.png
/assets/posts/2018/2/1/hi.png
/assets/application.css
instead of /assets/application.scss
/assets/application.js
instead of /assets/application.coffee