mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-30 17:38:40 +00:00 
			
		
		
		
	 b8b7a10b33
			
		
	
	
		b8b7a10b33
		
			
		
	
	
	
	
		
			
			* fix: some bugs * fix: performance * feat: support system dark mode and different language * feat: support breadcrumb * feat: support breadcrumb * feat: support new doucment title * feat: support new doucment title
		
			
				
	
	
		
			21 lines
		
	
	
		
			439 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			439 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const colors = require('./tailwind/colors.cjs');
 | |
| const boxShadow = require('./tailwind/box-shadow.cjs');
 | |
| 
 | |
| /** @type {import('tailwindcss').Config} */
 | |
| module.exports = {
 | |
|   content: [
 | |
|     './index.html',
 | |
|     './src/**/*.{js,ts,jsx,tsx}',
 | |
|     './node_modules/react-tailwindcss-datepicker/dist/index.esm.js',
 | |
|   ],
 | |
|   important: '#body',
 | |
|   darkMode: 'class',
 | |
|   theme: {
 | |
|     extend: {
 | |
|       colors,
 | |
|       boxShadow,
 | |
|     },
 | |
|   },
 | |
|   plugins: [],
 | |
| };
 |