mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-02-13 11:49:14 -06:00
15 lines
300 B
JavaScript
15 lines
300 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,jsx,ts,tsx,md,mdx}",
|
|
"./components/**/*.{js,jsx,ts,tsx,md,mdx}",
|
|
|
|
// Or if using `src` directory:
|
|
"./src/**/*.{js,jsx,ts,tsx,md,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|