Files
page-builder/tailwind.config.js

13 lines
236 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/app/**/*.{ts,tsx}",
"./src/components/**/*.{ts,tsx}",
"./src/features/**/*.{ts,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};