mirror of
https://github.com/fabrice404/olympics-calendar.git
synced 2025-12-13 14:49:46 +00:00
16 lines
216 B
JavaScript
16 lines
216 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./docs/*.html"],
|
|
theme: {
|
|
extend: {
|
|
},
|
|
},
|
|
plugins: [
|
|
require("daisyui"),
|
|
],
|
|
daisyui: {
|
|
themes: ["cmyk"],
|
|
},
|
|
};
|
|
|