plane/apps/space/tailwind.config.js

18 lines
332 B
JavaScript
Raw Normal View History

2023-08-08 07:25:42 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.tsx",
"./components/**/*.{js,ts,jsx,tsx}",
"./constants/**/*.{js,ts,jsx,tsx}",
2023-08-08 07:25:42 +00:00
],
theme: {
extend: {
colors: {},
},
},
plugins: [],
};