- iOS Memos benzeri PWA ön yüz eklendi (React, Tailwind) - Express tabanlı arka uç, AnythingLLM API entegrasyonu ve senkronizasyon kuyruğu oluşturuldu - Docker, TypeScript ve proje konfigürasyonları tanımlandı
14 lines
280 B
JavaScript
14 lines
280 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
display: ["Fraunces", "serif"],
|
|
sans: ["Space Grotesk", "sans-serif"]
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|