2018-05-18 17:59:23 +00:00
|
|
|
/* @flow */
|
|
|
|
|
|
|
|
import path from 'path';
|
|
|
|
|
|
|
|
export const ABSOLUTE_BASE: string = path.normalize(path.join(__dirname, '..'));
|
|
|
|
|
|
|
|
const constants: Object = Object.freeze({
|
|
|
|
BUILD: path.join(ABSOLUTE_BASE, 'build/'),
|
|
|
|
SRC: path.join(ABSOLUTE_BASE, 'src/'),
|
|
|
|
PORT: 8081,
|
|
|
|
INDEX: path.join(ABSOLUTE_BASE, 'src/index.html'),
|
2018-07-30 10:47:37 +00:00
|
|
|
TREZOR_CONNECT_ROOT: path.join(ABSOLUTE_BASE, '../trezor.js2/'),
|
2018-05-18 17:59:23 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export const BUILD: string = constants.BUILD;
|
|
|
|
export const SRC: string = constants.SRC;
|
|
|
|
export const PORT: string = constants.PORT;
|
|
|
|
export const INDEX: string = constants.INDEX;
|
|
|
|
|
|
|
|
export default constants;
|