mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 05:26:41 +02:00
Switch from adapter-netlify to adapter-node for self-hosted Docker deployment. Add missing Button and Card UI components, remove Netlify config files, and add picture-backend + picture-web services to docker-compose and Cloudflare tunnel routing (picture.mana.how). Co-Authored-By: Claude Opus 4.6 (1M context) <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;
|