mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
15 lines
245 B
HTML
15 lines
245 B
HTML
<h1>This page should never render</h1>
|
|
|
|
<script>
|
|
export default {
|
|
preload() {
|
|
return new Promise(fulfil => {
|
|
if (typeof window !== 'undefined') {
|
|
window.fulfil = fulfil;
|
|
} else {
|
|
fulfil({});
|
|
}
|
|
});
|
|
}
|
|
};
|
|
</script> |