mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-29 05:09:25 +00:00
Changed the whole tech stack to SvelteKit which means: - Typescript - SSR - No fastify :( - Beta, but it's fine! Other changes: - Tailwind -> Tailwind JIT - A lot more
15 lines
238 B
Svelte
15 lines
238 B
Svelte
<script context="module">
|
|
export function load({ error, status }) {
|
|
return {
|
|
props: {
|
|
error: `${status}: ${error.message}`
|
|
}
|
|
};
|
|
}
|
|
</script>
|
|
|
|
<script>
|
|
export let error;
|
|
</script>
|
|
|
|
<h1 class="text-xl font-bold">{error}</h1> |