website/tailwind.config.js

14 lines
221 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
2025-06-21 11:55:20 +09:00
"./src/pages/**/*.lisp",
2025-05-02 00:49:52 +09:00
"./src/components/**/*.lisp",
],
2024-11-17 00:59:06 +09:00
theme: {
container: {
center: true,
},
},
2024-10-03 02:03:14 +09:00
plugins: [],
}