mirror of
https://github.com/lumehq/lume.git
synced 2025-03-18 13:51:59 +01:00
16 lines
353 B
JavaScript
16 lines
353 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
serif: ["Alice", ...defaultTheme.fontFamily.serif],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|