mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-19 12:59:36 +02:00
11 lines
No EOL
251 B
JavaScript
11 lines
No EOL
251 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"],
|
|
},
|
|
}; |