creddy/tailwind.config.js

14 lines
209 B
JavaScript
Raw Permalink Normal View History

2022-08-14 20:27:41 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{svelte,html}",
],
theme: {
extend: {},
},
2023-04-24 05:29:12 +00:00
plugins: [
require('daisyui'),
],
2022-08-14 20:27:41 +00:00
}