https://i.sstatic.net/99gpe.pngI tried following the steps from a YouTube tutorial, but I am unable to apply the font family "nunito." I inserted the @import code into the CSS file located in the "src" folder and executed "npm run (script name)" in the terminal, but unfortunately nothing seems to be working.
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
nunito: ["Nunito"], // ! investigating why the specified font family is still not showing up in the styles.css within the public -o output folder.
},
colors: {
// ADDITIONAL COLOR STYLES HERE
primary: "#FF6363",
secondary: {
100: "#E2E2D5",
100: "#888883",
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};