Troubleshooting Guide
Common issues and solutions for content creators working on the Qbead website.
500 Error about not having a single script tag
[plugin:vite-plugin-svelte:compile] /.../src/content/about.md:23:0 A component can have a single top-level <script> element and/or a single top-level <script module> element
https://svelte.dev/e/script_duplicate
about.md:10:0
21 | </script>
22 |
23 |
But... you do?
It's a bug caused by non-ascii characters.
Could happen when content has a "curly apostrophe": ‘ so be careful to check your content for punctuation that isn't plain.
Build errors
If something seems off about the build, try "turning it off and on again".
Ctrl+c
# Reinstall dependencies
rm -rf node_modules
rm -rf .svelte-kit
rm -rf codedoc_tmp
bun install
bun run codedocs:clean
# restart dev server
bun run dev
Hard Refresh Browser
Windows/Linux: Ctrl + Shift + R Mac: Cmd + Shift + R
Or open DevTools (F12) and right-click refresh button → "Empty Cache and Hard Reload"
Callout Not Rendering
Check Blank Lines
<!-- Wrong: - no blank lines -->
<Callout type="info" title="Title">
Content here
</Callout>
<!-- Right: - blank lines present -->
<Callout type="info" title="Title">
Content here
</Callout>
Check Import
<script>
import Callout from '$lib/components/Callout/Callout.svelte'
</script>
Interactive Elements Not Working
Check Svelte 5 Syntax
<!-- Wrong: - Svelte 4 syntax -->
<script>
let count = 0
</script>
<button on:click={() => count++}>
<!-- Right: - Svelte 5 syntax -->
<script>
let count = $state(0)
</script>
<button onclick={() => count++}>
See Interactive Elements Guide for details.
Lessons Not Appearing in Gallery
Check Required Properties
Lessons need ALL of these:
---
title: Lesson Title
layout: lesson # MUST be exactly "lesson"
topics: quantum mechanics
difficulty: Beginner # MUST be: Beginner, Intermediate, or Advanced
objectives:
- First objective
headerImage: /qbeadmedia/lessons/image.jpg
---
Check File Location
Must be in src/content/lessons/ directory:
# Wrong:
src/content/my-lesson.md
# Right:
src/content/lessons/my-lesson.md
Branch Preview Not Working
Check Branch Name
Preview URL format: https://<branch-name>.qbead-website.pages.dev/
- Branch names with
/won't work well - Use hyphens instead:
feature-new-lesson
Check Build Status
- Go to Cloudflare Dashboard
- Click on "Compute & AI -> Workers & Pages -> qbead-website
- Look for failed builds
- Click on failed build to see error logs