feat: use env for api endpoint

This commit is contained in:
Kai Folf 2024-12-05 09:53:25 +07:00
parent 31b6b86238
commit 1d4ca73605

View file

@ -1,4 +1,6 @@
<script>
import { PUBLIC_FRESHGUARD_ENDPOINT } from '$env/static/public';
/**
* @type {HTMLVideoElement | null}
*/
@ -39,7 +41,9 @@
formData.append('file', blob, 'image.jpg');
// Upload to API with form-data format
let res = await fetch('http://localhost:5000/predict', {
let endpoint = new URL(PUBLIC_FRESHGUARD_ENDPOINT);
endpoint.pathname = '/predict';
let res = await fetch(endpoint, {
method: 'POST',
body: formData
});