app/javascript/mastodon/main.js delayed the execution of modules, but other entry points didn't. That leads to failure in executing modules, which requires those polyfills. Strictly enforce the rule to require any modules after loading polyfill in entry points.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			167 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			167 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import loadPolyfills from '../mastodon/load_polyfills';
 | |
| 
 | |
| loadPolyfills().then(() => {
 | |
|   require('../mastodon/main').default();
 | |
| }).catch(e => {
 | |
|   console.error(e);
 | |
| });
 |