mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 05:23:35 +00:00 
			
		
		
		
	css-loader@4 broke @import statements referencing files with extensions other than .css, unless those @import statements are compiled away by another loader. Upstream is more interested in arguing that such @import statements are semantically incorrect than applying the one line fix. https://github.com/webpack-contrib/css-loader/issues/1164 Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			275 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			275 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
module.exports = {
 | 
						|
    plugins: {
 | 
						|
        // Warning: despite appearances, order is significant
 | 
						|
        "postcss-nested": {},
 | 
						|
        "postcss-extend-rule": {},
 | 
						|
        "postcss-simple-vars": {},
 | 
						|
        "postcss-calc": {},
 | 
						|
        autoprefixer: {},
 | 
						|
    },
 | 
						|
};
 |