20 lines
380 B
JavaScript
20 lines
380 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./content/**/*.{html,js}",
|
|
"./templates/**/*.{html,js}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
fontFamily: {
|
|
'sans' : ['jetbrains-mono',],
|
|
},
|
|
typography: (theme) => ({}),
|
|
},
|
|
darkMode: 'class',
|
|
variants: {},
|
|
// plugins: [require('@tailwindcss/typography')],
|
|
plugins: [],
|
|
}
|
|
|