0
0
Fork 0

ASSET_HOST is wrong env variable. Fix to CDN_HOST (#6372)

This commit is contained in:
Eugen Rochko 2018-01-29 01:06:39 +01:00 committed by GitHub
parent 79bc3d5845
commit 97dcfb0f50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
module PremailerWebpackStrategy
def load(url)
asset_host = ENV['ASSET_HOST'] || ENV['WEB_DOMAIN'] || ENV['LOCAL_DOMAIN']
asset_host = ENV['CDN_HOST'] || ENV['WEB_DOMAIN'] || ENV['LOCAL_DOMAIN']
if Webpacker.dev_server.running?
asset_host = "#{Webpacker.dev_server.protocol}://#{Webpacker.dev_server.host_with_port}"