mirror of
https://codeberg.org/andyscott-pages/andyscott-dot-me.git
synced 2024-11-08 13:20:49 -05:00
12 lines
386 B
JavaScript
12 lines
386 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
plugins: [require("@tailwindcss/typography"),require("daisyui")],
|
|
daisyui: {
|
|
themes: [
|
|
'bumblebee', // this will be the default light theme
|
|
'business'
|
|
],
|
|
darkTheme: 'business' // this will be the default dark theme
|
|
}
|
|
}
|