managarten/apps/planta/apps/web/vite.config.ts
Till-JS 14da5a28ef 📝 docs(auth): update organization endpoint documentation
- Add all new organization management endpoints to API table
- Add new Invitations section for invitation endpoints
- Update controller JSDoc with complete endpoint list
- Update last updated date
2026-02-16 12:57:29 +01:00

31 lines
791 B
TypeScript

import { sveltekit } from '@sveltejs/kit/vite';
import tailwindcss from '@tailwindcss/vite';
import { defineConfig } from 'vite';
import { SvelteKitPWA } from '@vite-pwa/sveltekit';
import { createPWAConfig } from '@manacore/shared-pwa';
import { MANACORE_SHARED_PACKAGES } from '@manacore/shared-vite-config';
export default defineConfig({
plugins: [
tailwindcss(),
sveltekit(),
SvelteKitPWA(
createPWAConfig({
name: 'Planta - Pflanzenpflege',
shortName: 'Planta',
description: 'Pflanzenpflege und -identifikation',
themeColor: '#22c55e',
})
),
],
server: {
port: 5191,
strictPort: true,
},
ssr: {
noExternal: [...MANACORE_SHARED_PACKAGES, '@planta/shared'],
},
optimizeDeps: {
exclude: [...MANACORE_SHARED_PACKAGES, '@planta/shared'],
},
});