mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 21:29:40 +02:00
The LLM playground is a SvelteKit web app (frontend), not a backend microservice. Moving it to apps/ follows the monorepo convention where all user-facing apps live under apps/. - Moved services/llm-playground/ → apps/playground/apps/web/ - Renamed package from @mana-llm/playground to @playground/web - Updated Dockerfile paths for new location - Updated docker-compose.macmini.yml build context - Removed unused concurrently dependency - Added parent package.json Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
265 B
JavaScript
12 lines
265 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(),
|
|
},
|
|
};
|
|
|
|
export default config;
|