kizuren.dev/tailwind.config.js
2025-05-29 00:16:04 +02:00

19 lines
No EOL
374 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: {
fontFamily: {
pixel: ['"Press Start 2P"', 'monospace'],
},
},
},
}