mirror of
https://github.com/phpmon/website
synced 2025-08-06 06:20:07 +02:00
16 lines
282 B
JavaScript
16 lines
282 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./resources/**/*.blade.php",
|
|
"./resources/**/*.js",
|
|
"./resources/**/*.vue",
|
|
],
|
|
theme: {
|
|
fontFamily: {
|
|
'sans': ['Inter', 'sans-serif']
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|