bewcloud/tailwind.config.ts

19 lines
352 B
TypeScript
Raw Permalink Normal View History

2024-03-16 08:40:24 +00:00
export default {
content: [
'./lib/*.ts',
'./lib/**/*.ts',
'./lib/*.tsx',
'./lib/**/*.tsx',
'./pages/*.ts',
'./pages/**/*.ts',
'./pages/*.tsx',
'./pages/**/*.tsx',
'./components/*.ts',
'./components/**/*.ts',
'./components/*.tsx',
'./components/**/*.tsx',
2024-03-16 08:40:24 +00:00
],
plugins: ['forms'],
safelist: [],
};