17 lines
381 B
JavaScript
17 lines
381 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
'./lib/**/*.{js,ts,jsx,tsx}',
|
|
'./services/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
safelist: [],
|
|
blocklist: [
|
|
'./public/**/*',
|
|
'./data/**/*',
|
|
'!./assets/big-models/**/*'
|
|
],
|
|
theme: { extend: {} },
|
|
plugins: [],
|
|
}; |