mirror of
https://github.com/jakobkordez/ham-reserve.git
synced 2025-08-03 19:57:42 +00:00
13 lines
276 B
TypeScript
13 lines
276 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {},
|
|
plugins: [],
|
|
};
|
|
export default config;
|