mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 19:57:52 +01:00
6 lines
145 B
JavaScript
6 lines
145 B
JavaScript
// tiny wrapper with default env vars
|
|
module.exports = {
|
|
NODE_ENV: process.env.NODE_ENV || "development",
|
|
PORT: process.env.PORT || 3000,
|
|
};
|