mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-03 13:54:12 +03:00
17 lines
285 B
JavaScript
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: [],
|
||
|
}
|