followgraph/tailwind.config.js

12 wiersze
241 B
JavaScript
Czysty Zwykły widok Historia

2022-12-20 13:50:49 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
2022-12-20 13:50:49 +00:00
],
theme: {
extend: {},
},
2023-01-01 18:35:08 +00:00
plugins: [require('@tailwindcss/typography')],
2022-12-20 13:50:49 +00:00
}