sw-jobs-frontend/tailwind.config.ts
christian 29a4d0be05
Some checks failed
Vercel Production Deployment / Deploy-Production (push) Failing after 43s
initial frontend before bed
2024-06-09 00:27:02 +02:00

15 lines
295 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: {
extend: {},
},
plugins: [],
};
export default config;