paxton-front/tailwind.config.ts
Veselov e2e031b7c5
Some checks failed
Deploy / build-and-deploy (push) Failing after 7s
add nuxt/ui
2025-08-04 01:24:20 +03:00

17 lines
424 B
TypeScript

// tailwind.config.ts
import type { Config } from 'tailwindcss'
const config: Config = {
content: [], // Nuxt сам заполняет content автоматически
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'], // если используешь @nuxt/fonts или свою кастомную типографику
},
},
},
plugins: [],
}
export default config