notapatch
notapatch

Reputation: 7173

Rails verify the assets in the assets pipeline

I wanted to verify what CSS and JS the application has added into the asset pipeline during development.

Upvotes: 0

Views: 29

Answers (1)

notapatch
notapatch

Reputation: 7173

CSS in the asset pipeline

To access the styles accumulated in the asset pipeline during development - enter into the browser:

localhost:3000/assets/application.css

JS in the asset pipeline

To access the scripts accumulated in the asset pipeline during development - enter into the browser:

localhost:3000/assets/application.js

Reference

Railscasts #279 - Understanding the Asset Pipeline

Upvotes: 1

Related Questions