Files
gunbuilder-next-tailwind/tailwind.config.js

12 lines
263 B
JavaScript
Raw Normal View History

2025-06-29 07:12:20 -04:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
"./src/app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};