mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 01:01:25 +02:00
- Add @sveltejs/adapter-node for server-side rendering - Create Dockerfile for chat web SvelteKit app - Add /health endpoint for container health checks - Add chat-web service to docker-compose.staging.yml - Update CI/CD workflow with chat-web health check The chat app now deploys with both backend and web frontend: - mana-core-auth (port 3001) - central auth - chat-backend (port 3002) - API - chat-web (port 3000) - web frontend 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
288 B
JavaScript
15 lines
288 B
JavaScript
import adapter from '@sveltejs/adapter-node';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
adapter: adapter({
|
|
out: 'build',
|
|
}),
|
|
},
|
|
};
|
|
|
|
export default config;
|