mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-06 09:16:53 -06:00
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
mono: ["CMU Typewriter Text", "monospace"],
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|