mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 03:05:12 +00:00
13 lines
247 B
HTML
13 lines
247 B
HTML
<script context="module">
|
|
export function preload() {
|
|
return new Promise(fulfil => {
|
|
if (typeof window !== 'undefined') {
|
|
window.fulfil = fulfil;
|
|
} else {
|
|
fulfil({});
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<h1>This page should never render</h1> |