mirror of https://github.com/logos-co/open-law.git
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")],
|
||
|
};
|