File size: 307 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 |
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
fontFamily: {
'nunito': ['nunito', 'sans-serif'],
'MyFont': ['"My Font"', 'serif'] // Ensure fonts with spaces have " " surrounding it.
},
extend: {},
},
plugins: [],
} |