wasp/project-page/tailwind.config.js

17 lines
285 B
JavaScript
Raw Normal View History

2022-10-24 11:43:21 +03:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter']
}
},
},
plugins: [],
}