mirror of
https://github.com/logos-co/open-law.git
synced 2025-01-10 14:55:50 +00:00
14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "class",
|
|
content: [
|
|
"./app/templates/**/*.html",
|
|
"./src/js/**/*.js",
|
|
"./node_modules/flowbite/**/*.js",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require("flowbite/plugin")],
|
|
};
|