mirror of
https://github.com/zhigang1992/xverse-web-extension.git
synced 2026-01-12 22:53:42 +08:00
* 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
6 lines
153 B
JavaScript
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,
|
|
};
|
|
|