Files
testing-tool/tailwind.config.js
T
2026-05-21 22:57:23 +08:00

16 lines
361 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
'./entrypoints/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./providers/**/*.{js,ts,jsx,tsx}',
'./utils/**/*.{js,ts,jsx,tsx}',
'./config/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {},
},
plugins: [],
};