mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 13:46:43 +02:00
Switch from @sveltejs/adapter-auto to @sveltejs/adapter-node for presi-web and storage-web to enable proper Docker container builds. adapter-auto cannot build correctly in Docker environment. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
287 B
JavaScript
14 lines
287 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;
|