xyyd-fatfox/tailwind.config.js

11 lines
214 B
JavaScript
Raw Permalink Normal View History

2024-09-09 17:53:07 +08:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
2024-10-10 19:10:55 +08:00
darkMode: 'selector',
theme: {
fontFamily: {
'din': 'DIN-Black'
}
}
2024-09-09 17:53:07 +08:00
}