16 lines
363 B
JavaScript
16 lines
363 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: [],
|
|
};
|