mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-22 22:49:45 +01:00
11 lines
269 B
JavaScript
11 lines
269 B
JavaScript
export const HOST =
|
|
process.env.NODE_ENV === "production"
|
|
? "https://api.notesnook.com/"
|
|
: "http://0.0.0.0:8000/";
|
|
export const HEADERS = {
|
|
agent: "nn/1.0.0",
|
|
origin: "notesnook.com",
|
|
"Content-Type": "application/json",
|
|
Accept: "application/json",
|
|
};
|