mirror of
https://github.com/youwen5/blog.git
synced 2024-11-24 18:03:50 -08:00
13 lines
299 B
JavaScript
13 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")],
|
|
};
|