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