Add Tailwindcss as dev dependency
			#5
			
				
			
		
		
	 Merged
	
	
		
		
			
		
		
		
		
			
		
		
			
			
				androiddrew
				merged 3 commits from drew/add-tailwind  into main 1 year ago
			
		
	
	
@ -0,0 +1,2 @@
 | 
			
		||||
node_modules/
 | 
			
		||||
dist/*.{html,js,css,ico}
 | 
			
		||||
@ -1,2 +1,2 @@
 | 
			
		||||
FROM nginx
 | 
			
		||||
COPY . /usr/share/nginx/html
 | 
			
		||||
COPY ./src/index.html ./src/script.js ./src/main.css /usr/share/nginx/html
 | 
			
		||||
 | 
			
		||||
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								@ -0,0 +1,5 @@
 | 
			
		||||
{
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "tailwindcss": "^3.4.9"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,3 @@
 | 
			
		||||
@tailwind base;
 | 
			
		||||
@tailwind components;
 | 
			
		||||
@tailwind utilities;
 | 
			
		||||
| 
		 Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 318 B  | 
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								@ -0,0 +1,9 @@
 | 
			
		||||
/** @type {import('tailwindcss').Config} */
 | 
			
		||||
module.exports = {
 | 
			
		||||
  content: ["./src/**/*.{html,js}"],
 | 
			
		||||
  theme: {
 | 
			
		||||
    extend: {},
 | 
			
		||||
  },
 | 
			
		||||
  plugins: [],
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue