fix: remove leading front slash from HOST

This commit is contained in:
thecodrr
2020-08-24 11:27:21 +05:00
parent 2fcea10e43
commit 94e02adf67
3 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
export const HOST =
process.env.NODE_ENV === "production"
? "https://api.notesnook.com/"
: "http://0.0.0.0:8000/";
? "https://api.notesnook.com"
: "http://0.0.0.0:8000";
export const HEADERS = {
agent: "nn/1.0.0",
origin: "notesnook.com",