mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 18:01:09 +02:00
Rename games/mana-games/ to games/arcade/, update all package names (@mana-games/* → @arcade/*), appIds, display names, docker-compose service, root scripts, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
430 B
JavaScript
21 lines
430 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',
|
|
}),
|
|
prerender: {
|
|
handleHttpError: ({ path, message }) => {
|
|
if (path === '/favicon.png') return;
|
|
throw new Error(message);
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|