mirror of
				https://github.com/mastodon/mastodon.git
				synced 2025-10-30 20:51:33 +00:00 
			
		
		
		
	Fix assets loading when WEB_DOMAIN ≠ LOCAL_DOMAIN (#6319)
Since 872a0d5bd8, assets URL are absolute and
not relative. Unfortunately, the domain used to build such URLs is the wrong
one: LOCAL_DOMAIN, and not WEB_DOMAIN, where the assets are stored.
			
			
This commit is contained in:
		
							parent
							
								
									112b1fa265
								
							
						
					
					
						commit
						d613dda91d
					
				|  | @ -27,7 +27,7 @@ function formatPublicPath(host = '', path = '') { | ||||||
| 
 | 
 | ||||||
| const output = { | const output = { | ||||||
|   path: resolve('public', settings.public_output_path), |   path: resolve('public', settings.public_output_path), | ||||||
|   publicPath: formatPublicPath(env.ASSET_HOST || env.LOCAL_DOMAIN, settings.public_output_path), |   publicPath: formatPublicPath(env.ASSET_HOST || env.WEB_DOMAIN || env.LOCAL_DOMAIN, settings.public_output_path), | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| module.exports = { | module.exports = { | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 ThibG
						ThibG