wishlist-client/tailwind.config.js

15 lines
244 B
JavaScript
Raw Normal View History

2022-04-24 23:12:11 +02:00
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
2022-04-25 22:51:45 +02:00
extend: {
fontFamily: {
sans: ['"Dancing Script"', 'cursive'],
},
},
2022-04-24 23:12:11 +02:00
},
plugins: [],
}