Files
Mahmoud Aboelenein 2fcd6e1413 WIP: boilerplate-setup (#10)
* WIP: boilerplate-setup

* configure webpack for dev and prod with react

* WIP setup sample code with styling and design tokens

* finalized i18n localization

* added eslint and prettier config and change files accordingly

* replave react/hotreload with react-refresh

* added ts path aliases and updated types

* init onboarding flow
2022-09-20 10:13:20 +02:00

6 lines
153 B
JavaScript

// tiny wrapper with default env vars
module.exports = {
NODE_ENV: process.env.NODE_ENV || 'development',
PORT: process.env.PORT || 3000,
};