You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
656 B
JavaScript
23 lines
656 B
JavaScript
2 years ago
|
const defaultTheme = require('tailwindcss/defaultTheme');
|
||
|
|
||
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
|
||
|
"./resources/views/**/*.blade.php",
|
||
|
"./resources/js/**/*.jsx",
|
||
|
"./node_modules/flowbite/**/*.js",
|
||
|
"./node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}",
|
||
|
],
|
||
|
|
||
|
theme: {
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
sans: ["Nunito", ...defaultTheme.fontFamily.sans],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
|
||
|
plugins: [require("@tailwindcss/forms"), require("flowbite/plugin")],
|
||
|
};
|