mirror of
https://github.com/wah-su/wah-su.github.io.git
synced 2025-04-05 15:54:40 +00:00
17 lines
340 B
JavaScript
17 lines
340 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "selector",
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{html,js}",
|
|
"./public/js/cards.js",
|
|
"./node_modules/flowbite/**/*.js",
|
|
],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [require("flowbite/plugin")],
|
|
};
|