2024-02-12 21:44:41 +01:00
|
|
|
module.exports = {
|
2024-02-13 00:55:45 +01:00
|
|
|
content: ["./**/*.htm", "./node_modules/flowbite/**/*.js"],
|
|
|
|
theme: {
|
2024-02-13 01:41:48 +01:00
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
nunito: ["Nunito", "sans-serif"],
|
|
|
|
},
|
|
|
|
},
|
2024-02-13 00:55:45 +01:00
|
|
|
},
|
2024-02-17 11:57:32 +01:00
|
|
|
plugins: [
|
|
|
|
require("@tailwindcss/forms"),
|
|
|
|
require("@tailwindcss/typography"),
|
|
|
|
require("flowbite/plugin"),
|
|
|
|
],
|
2024-02-12 21:44:41 +01:00
|
|
|
};
|