18 lines
377 B
JavaScript
18 lines
377 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"node_modules/flowbite-react/lib/esm/**/*.js",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
poppins: ["Poppins", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
// eslint-disable-next-line no-undef
|
|
plugins: [require("flowbite/plugin")],
|
|
};
|