Files
pokemon/tailwind.config.js
Peter Wood 6d12242cfb chore: initialize project with Vite, Tailwind CSS, and Pokedex API
- Added package.json with project metadata and dependencies
- Created postcss.config.js for Tailwind CSS and Autoprefixer integration
- Added style.css to include Tailwind's base, components, and utilities
- Configured tailwind.config.js to specify content sources for class scanning
- Set up vite.config.js for build configuration targeting ES2020
2025-04-22 13:26:40 -04:00

12 lines
262 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html", // Scan index.html
"./index.js", // Scan index.js for potential dynamic classes (optional but good practice)
],
theme: {
extend: {},
},
plugins: [],
};