mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-12-23 22:58:17 -05:00
12 lines
253 B
JavaScript
12 lines
253 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/typography"), require("daisyui")],
|
|
daisyui: {
|
|
themes: ["night"],
|
|
},
|
|
};
|