bosia 0.6.7 → 0.6.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bosia",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "type": "module",
5
5
  "description": "A fast, batteries-included fullstack framework — SSR · Svelte 5 Runes · Bun · ElysiaJS. File-based routing inspired by SvelteKit. No Node.js, no Vite, no adapters.",
6
6
  "keywords": [
@@ -34,8 +34,6 @@ Add pages by creating `+page.svelte` files under `src/routes/`:
34
34
  src/routes/
35
35
  └── (public)/ # public route group — no URL segment
36
36
  ├── +page.svelte # /
37
- ├── about/
38
- │ └── +page.svelte # /about
39
37
  └── blog/
40
38
  ├── +page.svelte # /blog
41
39
  └── [slug]/
@@ -1 +0,0 @@
1
- export const prerender = true;
@@ -1,8 +0,0 @@
1
- <svelte:head>
2
- <title>About | Bosia</title>
3
- </svelte:head>
4
-
5
- <div>
6
- <h1>About</h1>
7
- <p>This page is prerendered at build time — no server work per request.</p>
8
- </div>