mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-05-04 10:33:47 +01:00
12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
plugins: [require('@tailwindcss/typography')]
|
|
} as Config;
|