mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
};
|