mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-30 16:33:19 -04:00
9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx,mdx}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
};
|