diff --git a/README.md b/README.md
index 39ccf3a..92c2077 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,12 @@ After hand-written HTML and a static site generator comes Nuxt!
**WARN: Nuxt 3 is too new that prerendering actually renders a ton of JS and causes blinking — remove all `Prose*.mjs` to stop it**
+Post-build instructions (while prerendering is bork)
+
+ - Strip all tags in every HTML file
+ - Compile `/script.ts` to `/script.js`
+ - Remove `/api` and `/_nuxt`
+
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## Setup
diff --git a/components/ColourPicker.vue b/components/ColourPicker.vue
index 33930ba..3bfa1cb 100644
--- a/components/ColourPicker.vue
+++ b/components/ColourPicker.vue
@@ -34,7 +34,7 @@ onMounted(() => {
{
- const results = (await useFetch(FEED_URL, { initialCache: false }))
- .data as Ref;
+ const results = (await useFetch(FEED_URL)).data as Ref;
const latestEvent = results.value.find(
(event) => event.type === "PushEvent"
) as GithubPushEvent;
@@ -22,12 +21,13 @@ onMounted(async () => {