mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	* hide buttons in dropdown menu * use npm as deps manager and vite as bundler * fix build * fix build (2) * fix responsive on mobile * fix more problems on mobile * sync build * (test) add CI step for verifying build * fix ci * force rebuild .hpp files * cmake: clean up generated files pre build
		
			
				
	
	
		
			17 lines
		
	
	
		
			570 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			570 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/** @type {import('tailwindcss').Config} */
 | 
						|
export default {
 | 
						|
  content: [
 | 
						|
    "./index.html",
 | 
						|
    "./src/**/*.{js,ts,jsx,tsx}",
 | 
						|
  ],
 | 
						|
  theme: {
 | 
						|
    extend: {},
 | 
						|
  },
 | 
						|
  plugins: [
 | 
						|
    require('daisyui'),
 | 
						|
  ],
 | 
						|
  daisyui: {
 | 
						|
    themes: ['light', 'dark', 'cupcake', 'bumblebee', 'emerald', 'corporate', 'synthwave', 'retro', 'cyberpunk', 'valentine', 'halloween', 'garden', 'forest', 'aqua', 'lofi', 'pastel', 'fantasy', 'wireframe', 'black', 'luxury', 'dracula', 'cmyk', 'autumn', 'business', 'acid', 'lemonade', 'night', 'coffee', 'winter', 'dim', 'nord', 'sunset'],
 | 
						|
  }
 | 
						|
}
 |