switched to astro

This commit is contained in:
Timothy Rogers 2024-07-06 23:03:52 -04:00
parent 9c8264f186
commit 46daf98523
196 changed files with 14792 additions and 19285 deletions

14
tailwind.config.cjs Normal file
View file

@ -0,0 +1,14 @@
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,mjs}"],
darkMode: "class", // allows toggling dark mode manually
theme: {
extend: {
fontFamily: {
sans: ["Roboto", "sans-serif", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require("@tailwindcss/typography")],
}