diff --git a/web/src/admin/Customers.vue b/web/src/admin/Customers.vue index fbe4c65..a00f789 100644 --- a/web/src/admin/Customers.vue +++ b/web/src/admin/Customers.vue @@ -30,7 +30,7 @@ export default { }, methods: { fetchData() { - fetch("/api/customers") + fetch("api/customers") .then(response => response.json()) .then(data => this.customers = data) }