2024-06-16 14:13:16 +09:00
|
|
|
/** @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-06-16 14:13:16 +09:00
|
|
|
],
|
2024-11-17 00:59:06 +09:00
|
|
|
theme: {
|
|
|
|
container: {
|
|
|
|
center: true,
|
|
|
|
},
|
|
|
|
},
|
2024-10-03 02:03:14 +09:00
|
|
|
plugins: [],
|
2024-06-16 14:13:16 +09:00
|
|
|
}
|