mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 01:39:36 +01:00
7eaa3b1a2b
Injects environment variables into the app through webpack, rather than script snippets in index.html. As part of this: * Updated server.js to use node’s path package to resolve file paths * Ensure that all url environment variables passed to the app don’t have a trailing slash, allowing for cleaner template urls **Note**: There are still a number of constants that should be taken out of the app and put into environment variables.
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
'use strict';
|
|
|
|
import AppConstants from '../../../../constants/application_constants';
|
|
|
|
const walletConstants = {
|
|
walletApiEndpoint: `${AppConstants.apiEndpoint}/whitelabel`
|
|
};
|
|
|
|
export default walletConstants;
|