mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-10 15:49:40 +00:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./src/**/*.tsx'
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('daisyui')],
|
|
}
|
|
|