Commit e139cc9e33810203fe3ac298ad6649cdbcd79f87
1 parent
f7b46fa5
Exists in
spb-stable
and in
3 other branches
Add emoji images to asset load path.
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
config/application.rb
... | ... | @@ -62,7 +62,9 @@ module Gitlab |
62 | 62 | |
63 | 63 | # Enable the asset pipeline |
64 | 64 | config.assets.enabled = true |
65 | - | |
65 | + config.assets.paths << Emoji.images_path | |
66 | + config.assets.precompile << "emoji/*.png" | |
67 | + | |
66 | 68 | # Version of your assets, change this if you want to expire all your assets |
67 | 69 | config.assets.version = '1.0' |
68 | 70 | ... | ... |