website-2/tailwind.config.js
Nick Bland 121abe7d0b Move towards using selector over class
Tailwind v3.4.1 utilises the selector method instead of the class method.
2024-04-08 23:04:31 +10:00

13 lines
269 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["night", "winter"],
},
darkMode: "selector",
};