- 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ı
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { VitePWA } from "vite-plugin-pwa";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
VitePWA({
|
|
registerType: "autoUpdate",
|
|
includeAssets: ["favicon.ico", "icons/icon-192.png", "icons/icon-512.png", "icons/apple-touch-icon.png"],
|
|
manifest: {
|
|
name: "Memos Notes",
|
|
short_name: "Memos",
|
|
description: "Minimal not uygulamasi",
|
|
theme_color: "#f4efe7",
|
|
background_color: "#f4efe7",
|
|
display: "standalone",
|
|
icons: [
|
|
{
|
|
src: "/icons/icon-192.png",
|
|
sizes: "192x192",
|
|
type: "image/png"
|
|
},
|
|
{
|
|
src: "/icons/icon-512.png",
|
|
sizes: "512x512",
|
|
type: "image/png"
|
|
},
|
|
{
|
|
src: "/icons/apple-touch-icon.png",
|
|
sizes: "180x180",
|
|
type: "image/png"
|
|
}
|
|
]
|
|
}
|
|
})
|
|
],
|
|
server: {
|
|
host: true,
|
|
port: 5173,
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://backend:8080",
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
}
|
|
});
|