chore: put backend host in an environment variable
All checks were successful
/ build-and-push-image (push) Successful in 23s
All checks were successful
/ build-and-push-image (push) Successful in 23s
This commit is contained in:
parent
7ebe19f905
commit
f831e4685f
|
@ -15,6 +15,8 @@ export async function getStaticPaths() {
|
||||||
props: { entry },
|
props: { entry },
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const backendHost = import.meta.env.PUBLIC_BACKEND_HOST;
|
||||||
---
|
---
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
@ -34,13 +36,13 @@ export async function getStaticPaths() {
|
||||||
<Post post={entry} componentType="full" />
|
<Post post={entry} componentType="full" />
|
||||||
|
|
||||||
<form
|
<form
|
||||||
hx-post="http://localhost:8000/blog/api/forms/emoji/post"
|
hx-post=`${backendHost}/blog/api/forms/emoji/post`
|
||||||
hx-target="#reaction-buttons"
|
hx-target="#reaction-buttons"
|
||||||
>
|
>
|
||||||
<input type="hidden" name="postId" value=`${entry.id}` />
|
<input type="hidden" name="postId" value=`${entry.id}` />
|
||||||
<div
|
<div
|
||||||
id="reaction-buttons"
|
id="reaction-buttons"
|
||||||
hx-get=`http://localhost:8000/blog/api/forms/emoji?postId=${entry.id}`
|
hx-get=`${backendHost}/blog/api/forms/emoji?postId=${entry.id}`
|
||||||
hx-trigger="load"
|
hx-trigger="load"
|
||||||
hx-swap="innerHTML"
|
hx-swap="innerHTML"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user