Skip to content

Commit

Permalink
Merge pull request #40 from uclab-potsdam/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
sinanatra authored Oct 11, 2023
2 parents ebedba1 + c09ea89 commit 73b1f38
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="%sveltekit.assets%/favicon.ico">
<meta name="theme-color" content="var(--theme-color)">
<link rel='stylesheet' href='%sveltekit.assets%/style.css'>
<meta name="viewport" content="width=device-width" />
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const load = async ({ fetch }) => {
const response = await fetch(`/api/posts`)
const response = await fetch(`./api/posts`)
const posts = await response.json()

return {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/[slug]/+page.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const load = async ({ fetch }) => {
const response = await fetch(`/api/posts`)
const response = await fetch(`./api/posts`)
const posts = await response.json()

return {
Expand Down

0 comments on commit 73b1f38

Please sign in to comment.