-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redirect root to run for now. Might make a homepage later. Might not. Sorry not sorry.
- Loading branch information
Showing
4 changed files
with
15 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
<script lang="ts"> | ||
import AppPage from "./app_page.svelte" | ||
</script> | ||
|
||
<svelte:head> | ||
<title>Kiln Studio</title> | ||
<meta name="description" content="The open source ML product platform" /> | ||
</svelte:head> | ||
import { goto } from "$app/navigation" | ||
<AppPage title="Run Task" /> | ||
goto("/run") | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const ssr = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<script lang="ts"> | ||
import AppPage from "../app_page.svelte" | ||
</script> | ||
|
||
<svelte:head> | ||
<title>Kiln Studio</title> | ||
<meta name="description" content="The open source ML product platform" /> | ||
</svelte:head> | ||
|
||
<AppPage title="Run Task" /> |