mirror of
https://github.com/H0llyW00dzZ/My-RESTAPIs-Boilerplate.git
synced 2025-02-06 10:02:01 +00:00
15 lines
356 B
JavaScript
15 lines
356 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
// Note: This should be correct. and now it fully rendered.
|
|
'frontend/htmx/error_page_handler/*.{templ,js}',
|
|
'frontend/htmx/site/*.{templ,js}',
|
|
'frontend/public/assets/js/*.{templ,js}',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
darkMode: 'selector',
|
|
}
|