mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
17 lines
292 B
JavaScript
17 lines
292 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./app/**/*.{js,ts,jsx,tsx}",
|
||
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
||
|
"./layouts/**/*.tsx",
|
||
|
"./components/**/*.{js,ts,jsx,tsx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|