kizuren.dev/tailwind.config.js
2025-03-23 23:04:02 +01:00

18 lines
No EOL
348 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
"./content/**/*.md",
],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
}