1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00
Files
til/rails/wipe-out-all-precompiled-assets.md
2019-12-03 10:13:32 -06:00

442 B

Wipe Out All Precompiled Assets

You can clean up precompiled assets using:

$ rails assets:clean

This command is built to be safe for situations like rolling deploys. Any assets that are still being used will not be cleaned up.

If you really want to wipe out all precompiled assets, you should clobber them:

$ rails assets:clobber

source