File tree 1 file changed +7
-1
lines changed
spec/dummy/config/initializers
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Be sure to restart your server when you modify this file.
2
2
3
3
# Version of your assets, change this if you want to expire all your assets.
4
- Rails . application . config . assets . version = ' 1.0'
4
+ Rails . application . config . assets . version = " 1.0"
5
5
6
6
# Add additional assets to the asset load path
7
7
# Rails.application.config.assets.paths << Emoji.images_path
8
8
9
9
# Precompile additional assets.
10
10
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
11
# Rails.application.config.assets.precompile += %w( search.js )
12
+
13
+ # Fixes a bug with sprockets v4
14
+ # https://github.com/rails/sprockets/issues/581#issuecomment-486984663
15
+ Rails . application . config . assets . configure do |env |
16
+ env . export_concurrent = false
17
+ end
You can’t perform that action at this time.
0 commit comments