mirror of
				https://github.com/C4illin/ConvertX.git
				synced 2025-11-04 05:53:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			250 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			250 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import autoprefixer from "autoprefixer";
 | 
						|
import cssnano from "cssnano";
 | 
						|
import tailwind from "tailwindcss";
 | 
						|
import tailwindConfig from "./tailwind.config.js";
 | 
						|
 | 
						|
export default {
 | 
						|
  plugins: [autoprefixer, tailwind(tailwindConfig), cssnano],
 | 
						|
};
 |