website/tailwind.config.js

15 lines
249 B
JavaScript
Raw Normal View History

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