mirror of https://github.com/TZGyn/shortener
update prettierrc
parent
9fcba543cb
commit
a768366513
@ -1,5 +1,7 @@
|
|||||||
import type { LayoutServerLoad } from './$types'
|
import type { LayoutServerLoad } from './$types'
|
||||||
|
|
||||||
export const load = (async () => {
|
export const load = (async () => {
|
||||||
return { shortener_url: process.env.SHORTENER_URL ?? 's.tzgyn.com' }
|
return {
|
||||||
|
shortener_url: process.env.SHORTENER_URL ?? 's.tzgyn.com',
|
||||||
|
}
|
||||||
}) satisfies LayoutServerLoad
|
}) satisfies LayoutServerLoad
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
<h1 class="text-xl">Welcome to SvelteKit</h1>
|
<h1 class="text-xl">Welcome to SvelteKit</h1>
|
||||||
<p>
|
<p>
|
||||||
Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation
|
Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the
|
||||||
|
documentation
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
Loading…
Reference in New Issue