feat: some more migration work

This commit is contained in:
Alexander Daichendt 2022-08-17 00:18:23 +02:00
parent a6d53167f7
commit 0e58e8c7e2
22 changed files with 199 additions and 157 deletions

View file

@ -1,15 +1,3 @@
<script context="module" lang="ts">
export async function load() {
return {
stuff: {
title: 'Privacy',
description:
'The privacy policy I have to include even though I don"t collect any data or use shady services.',
},
};
}
</script>
<h1>Privacy Policy for AlexDaichendt</h1>
<p>

View file

@ -0,0 +1,10 @@
export async function load() {
throw new Error("@migration task: Migrate this return statement (https://github.com/sveltejs/kit/discussions/5774#discussioncomment-3292693)");
return {
stuff: {
title: 'Privacy',
description:
'The privacy policy I have to include even though I don"t collect any data or use shady services.',
},
};
}