Spaces:
Sleeping
Sleeping
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| content: ["./templates/**/*.{html,js}", "./static/**/*.{html,js}"], // 根据您的项目结构调整路径 | |
| theme: { | |
| extend: { | |
| typography: { | |
| DEFAULT: { | |
| css: { | |
| maxWidth: '100%', | |
| }, | |
| }, | |
| }, | |
| }, | |
| }, | |
| plugins: [ | |
| require('@tailwindcss/typography'), | |
| ], | |
| } |