gt-astro-docs/tailwind.config.mjs

15 lines
316 B
JavaScript
Raw Normal View History

2024-12-24 22:46:41 +01:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
fontFamily :{
fsc: ["fsc","sans-serif"],
fsctitle: ["fsctitle","sans"],
roboto: ["roboto","sans"],
},
},
},
plugins: [],
}