yude.jp/tailwind.config.js

14 lines
225 B
JavaScript
Raw Normal View History

2024-01-15 13:28:35 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
2024-03-05 09:38:41 +00:00
plugins: [
require('@tailwindcss/typography'),
],
2024-01-15 13:28:35 +00:00
}