Spaces:
Running
Running
fix analysis
Browse files- src/routes/about/+page.svelte +0 -26
- src/routes/about/+page.ts +0 -9
src/routes/about/+page.svelte
DELETED
|
@@ -1,26 +0,0 @@
|
|
| 1 |
-
<svelte:head>
|
| 2 |
-
<title>About</title>
|
| 3 |
-
<meta name="description" content="About this app" />
|
| 4 |
-
</svelte:head>
|
| 5 |
-
|
| 6 |
-
<div class="text-column">
|
| 7 |
-
<h1>About this app</h1>
|
| 8 |
-
|
| 9 |
-
<p>
|
| 10 |
-
This is a <a href="https://kit.svelte.dev">SvelteKit</a> app. You can make your own by typing the
|
| 11 |
-
following into your command line and following the prompts:
|
| 12 |
-
</p>
|
| 13 |
-
|
| 14 |
-
<pre>npm create svelte@latest</pre>
|
| 15 |
-
|
| 16 |
-
<p>
|
| 17 |
-
The page you're looking at is purely static HTML, with no client-side interactivity needed.
|
| 18 |
-
Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening
|
| 19 |
-
the devtools network panel and reloading.
|
| 20 |
-
</p>
|
| 21 |
-
|
| 22 |
-
<p>
|
| 23 |
-
The <a href="/sverdle">Sverdle</a> page illustrates SvelteKit's data loading and form handling. Try
|
| 24 |
-
using it with JavaScript disabled!
|
| 25 |
-
</p>
|
| 26 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
src/routes/about/+page.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
| 1 |
-
import { dev } from '$app/environment';
|
| 2 |
-
|
| 3 |
-
// we don't need any JS on this page, though we'll load
|
| 4 |
-
// it in dev so that we get hot module replacement
|
| 5 |
-
export const csr = dev;
|
| 6 |
-
|
| 7 |
-
// since there's no dynamic data here, we can prerender
|
| 8 |
-
// it so that it gets served as a static asset in production
|
| 9 |
-
export const prerender = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|