Level 58
To remove the font family, you can comment out the fontFamily property in the tailwind.config.js file. Here's an example:
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
darkMode: 'class',
theme: {
extend: {
// Comment out the following line to remove the font family
// fontFamily: {
// sans: ['Figtree', ...defaultTheme.fontFamily.sans],
// },
},
},
plugins: [require('@tailwindcss/forms')],
};