2024-06-16 14:13:16 +09:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
2024-10-03 14:48:42 +09:00
|
|
|
"./src/renderer.lisp",
|
2024-06-16 14:13:16 +09:00
|
|
|
"./src/routes/**/*.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
|
|
|
}
|