mirror of
				https://github.com/tailscale/tailscale.git
				synced 2025-11-04 10:11:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			185 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			185 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/** @type {import('tailwindcss').Config} */
 | 
						|
module.exports = {
 | 
						|
  content: [
 | 
						|
    "./index.html",
 | 
						|
    "./src/**/*.{js,ts,jsx,tsx}",
 | 
						|
  ],
 | 
						|
  theme: {
 | 
						|
    extend: {},
 | 
						|
  },
 | 
						|
  plugins: [],
 | 
						|
}
 | 
						|
 |