This repository has been archived on 2026-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
vacation-planner-frontend/tailwind.config.js
2025-08-26 11:00:27 +08:00

15 lines
308 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
'./src/layouts/**/*.{js,ts,jsx,tsx,mdx}',
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {},
},
darkMode: "class",
plugins: [],
}