rapid-test/tailwind.config.ts

20 lines
494 B
TypeScript

import type { Config } from "tailwindcss";
import tailwindForms from "@tailwindcss/forms"
import tailwindAspect from "@tailwindcss/aspect-ratio"
2023-07-28 13:10:10 +02:00
// Use this as your template paths directory if using nextjs app dir: "./app/**/*.{js,ts,jsx,tsx,mdx}",
export default {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
},
plugins: [
tailwindForms({}),
tailwindAspect,
],
2023-07-28 13:10:10 +02:00
} satisfies Config;