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