ASSET_HOST is wrong env variable. Fix to CDN_HOST (#6372)
This commit is contained in:
		
							parent
							
								
									79bc3d5845
								
							
						
					
					
						commit
						97dcfb0f50
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -27,7 +27,7 @@ function formatPublicPath(host = '', path = '') {
 | 
			
		|||
 | 
			
		||||
const output = {
 | 
			
		||||
  path: resolve('public', settings.public_output_path),
 | 
			
		||||
  publicPath: formatPublicPath(env.ASSET_HOST, settings.public_output_path),
 | 
			
		||||
  publicPath: formatPublicPath(env.CDN_HOST, settings.public_output_path),
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
module.exports = {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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}"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue