mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 00:09:41 +02:00
- Fix missing conversationsStore import for auto title generation - Make model ID dynamic in generateTitle() with error handling and fallback - Add inline editing for manual conversation renaming in sidebar - Add updateConversationTitle API endpoint and store method - Replace browser confirm() with styled ConfirmationModal for delete - Update Modal and ConfirmationModal with glassmorphism styling - Add DEV_BYPASS_AUTH and GOOGLE_GENAI_API_KEY to env generation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
805 B
TypeScript
35 lines
805 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
server: {
|
|
port: 5174,
|
|
strictPort: true,
|
|
},
|
|
ssr: {
|
|
noExternal: [
|
|
'marked',
|
|
'@manacore/shared-theme',
|
|
'@manacore/shared-auth-ui',
|
|
'@manacore/shared-branding',
|
|
'@manacore/shared-ui',
|
|
'@manacore/shared-theme-ui',
|
|
'@manacore/shared-feedback-types',
|
|
'@manacore/shared-feedback-service',
|
|
'@manacore/shared-feedback-ui',
|
|
],
|
|
},
|
|
optimizeDeps: {
|
|
exclude: [
|
|
'@manacore/shared-theme',
|
|
'@manacore/shared-auth-ui',
|
|
'@manacore/shared-branding',
|
|
'@manacore/shared-ui',
|
|
'@manacore/shared-theme-ui',
|
|
'@manacore/shared-feedback-types',
|
|
'@manacore/shared-feedback-service',
|
|
'@manacore/shared-feedback-ui',
|
|
],
|
|
},
|
|
});
|