15 lines
		
	
	
		
			250 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			250 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const rollupConfig = require('./rollup.config');
 | |
| 
 | |
| module.exports = {
 | |
|   plugins: {
 | |
|     'postcss-cssnext': {},
 | |
|     'postcss-url': {
 | |
|       url: 'inline',
 | |
|     },
 | |
|     'postcss-header': {
 | |
|       header: rollupConfig.banner,
 | |
|     },
 | |
|     stylefmt: {},
 | |
|   },
 | |
| };
 |