From e8a3eb6fefa90286e122a0792b18631bdd2591a7 Mon Sep 17 00:00:00 2001 From: rui hildt Date: Mon, 12 Oct 2020 11:42:04 +0200 Subject: [PATCH] Update Backend deployed url & homepage --- README.md | 2 +- package.json | 1 + src/utils/API.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5bafb1f..02b4a69 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,6 @@ Find the the shortest path between different cities in Belgium with Dijkstra alg - Frontend: https://dijkstra.ruihildt.xyz/ -- Backend: https://dijkstra-backend.herokuapp.com/ +- Backend: https://dijkstra-backend.ruihildt.xyz/ - Backend Source: https://git.ruihildt.xyz/ruihildt/dijkstra-backend diff --git a/package.json b/package.json index 5684f18..2a4e0a9 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "name": "dijkstra-frontend", + "homepage": "http://dijkstra.ruihildt.xyz", "version": "0.1.0", "private": true, "dependencies": { diff --git a/src/utils/API.js b/src/utils/API.js index 0fd7b85..f731c32 100644 --- a/src/utils/API.js +++ b/src/utils/API.js @@ -3,4 +3,4 @@ import axios from "axios"; export default axios.create({ baseURL: "http://localhost:4000", responseType: "json" -}); \ No newline at end of file +});