mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 11:54:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			241 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			241 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
const postcssSmartImport = require('postcss-smart-import');
 | 
						|
const precss = require('precss');
 | 
						|
const autoprefixer = require('autoprefixer');
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  plugins: [
 | 
						|
    postcssSmartImport(),
 | 
						|
    precss(),
 | 
						|
    autoprefixer(),
 | 
						|
  ],
 | 
						|
};
 |