wasp/project-page/tailwind.config.js
2022-11-26 19:01:40 +01:00

17 lines
285 B
JavaScript

/** @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: [],
}