6 lines
170 B
JavaScript
6 lines
170 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
|
|
theme: { extend: {} },
|
|
plugins: [],
|
|
};
|