use relative paths

This commit is contained in:
Emile Nijssen 2022-06-12 22:10:50 +02:00
parent bbd19b7a6f
commit e7f4cc2d56
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
class API {
async call({ method, path, body }) {
const res = await fetch(`/api${path}`, {
const res = await fetch(`./api${path}`, {
method,
headers: {
'Content-Type': 'application/json',