blob: 2acdcbd163af844e8133a615a7b55159f55f6f9b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./App.{js,jsx,ts,tsx}", "./<custom directory>/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
}
|