mirror of
https://codeberg.org/Sevichecc/Seigwai.git
synced 2025-04-30 07:49:30 +08:00
9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['**/*.tsx', '**/*.ts', '**/*.vue', '**/*.html'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
}
|