This commit is contained in:
alsaze
2025-11-26 16:14:00 +03:00
commit 70d6285ebf
23 changed files with 16776 additions and 0 deletions

16
tailwind.config.ts Normal file
View File

@@ -0,0 +1,16 @@
// 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