plane/space/tailwind.config.js
sriram veeraghanta 3ce0aa8ebc restructring
2023-08-22 13:00:23 +05:30

18 lines
332 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}",
"./constants/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {},
},
},
plugins: [],
};