|
123456789101112 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
- theme: {
- fontFamily: {
- body: ['Times New Roman', 'Times', 'serif'],
- },
- extend: {
- },
- },
- plugins: [],
- }
|