Custom-Gemini / tailwind.config.js
Moonfanz's picture
Upload 1796 files
e2f726f verified
raw
history blame
389 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/**/*.{html,js}", "./static/**/*.{html,js}"], // 根据您的项目结构调整路径
theme: {
extend: {
typography: {
DEFAULT: {
css: {
maxWidth: '100%',
},
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}