mirror of
https://github.com/chaoming/hugo-saasify-theme.git
synced 2025-04-20 03:01:54 +02:00
21 lines
568 B
JavaScript
21 lines
568 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
presets: [require('./themes/hugo-saasify-theme/tailwind.config.js')],
|
||
|
content: [
|
||
|
"./themes/hugo-saasify-theme/layouts/**/*.html",
|
||
|
"./layouts/**/*.html",
|
||
|
"./content/**/*.{html,md}"
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
||
|
heading: ['Plus Jakarta Sans', 'sans-serif'],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [
|
||
|
require('@tailwindcss/forms'),
|
||
|
require('@tailwindcss/typography'),
|
||
|
],
|
||
|
}
|