mirror of
https://github.com/youwen5/blog.git
synced 2024-11-24 18:03:50 -08:00
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./src/**/*.{html,js}"],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
sans: ["Inter", "sans-serif"],
|
||
|
serif: ["Merriweather", "serif"],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [require("@tailwindcss/typography")],
|
||
|
};
|