mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
Web app features: - Auth: Login, Register, Forgot Password with shared-auth-ui - Chat: New chat, conversation view, message list, model selector - Templates: List, create, edit, delete templates - Spaces: Team workspaces with member management - Documents: Document mode with version history - Archive & Profile pages Technical: - SvelteKit 2 with Svelte 5 runes - Tailwind CSS 4 with shared themes - Supabase Auth with SSR - ChatLogo added to shared-branding - dev:*:app commands for web+backend 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
525 B
TypeScript
25 lines
525 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
ssr: {
|
|
noExternal: [
|
|
'marked',
|
|
'@manacore/shared-theme',
|
|
'@manacore/shared-auth-ui',
|
|
'@manacore/shared-branding',
|
|
'@manacore/shared-ui',
|
|
'@manacore/shared-theme-ui'
|
|
]
|
|
},
|
|
optimizeDeps: {
|
|
exclude: [
|
|
'@manacore/shared-theme',
|
|
'@manacore/shared-auth-ui',
|
|
'@manacore/shared-branding',
|
|
'@manacore/shared-ui',
|
|
'@manacore/shared-theme-ui'
|
|
]
|
|
}
|
|
});
|