open-law/tailwind.config.js

14 lines
274 B
JavaScript
Raw Normal View History

2023-04-20 13:10:16 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-05-10 13:45:18 +00:00
darkMode: 'class',
2023-04-20 13:10:16 +00:00
content: [
2023-05-10 13:45:18 +00:00
'./app/templates/**/*.html',
'./src/js/**/*.js',
'./node_modules/flowbite/**/*.js',
2023-04-20 13:10:16 +00:00
],
theme: {
extend: {},
},
2023-05-10 13:45:18 +00:00
plugins: [require('flowbite/plugin')],
2023-04-20 13:10:16 +00:00
};