aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/helpers/httpHelper.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/helpers/httpHelper.js')
-rw-r--r--frontend/src/helpers/httpHelper.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/src/helpers/httpHelper.js b/frontend/src/helpers/httpHelper.js
index 28704f5..0c7c295 100644
--- a/frontend/src/helpers/httpHelper.js
+++ b/frontend/src/helpers/httpHelper.js
@@ -1,6 +1,8 @@
import axios from 'axios';
-const base = `http://localhost:8080/api`
+// uncomment for local dev
+// const base = `http://localhost:8080/api`
+const base = `https://api.ctrl-v.app/api`
export function FetchPaste(hash) {
const serverURL = `${base}/${hash}`