forked from bigcommerce/stencil-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.js
31 lines (24 loc) · 859 Bytes
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/// ////////////////////////////////////// Stencil CLI ///////////////////////////////////// ///
const PACKAGE_INFO = require('./package.json');
/// //////////////////////////////////////// Themes /////////////////////////////////////// ///
const THEME_PATH = process.cwd();
const DEFAULT_CUSTOM_LAYOUTS_CONFIG = {
brand: {},
category: {},
page: {},
product: {},
};
/// ///////////////////////////////////////// Other //////////////////////////////////////// ///
const DEV_API_HOST = 'https://api.service.bcdev';
const INTG_API_HOST = 'https://api.integration.zone';
const STG_API_HOST = 'https://api.staging.zone';
const API_HOST = 'https://api.bigcommerce.com';
module.exports = {
PACKAGE_INFO,
THEME_PATH,
DEFAULT_CUSTOM_LAYOUTS_CONFIG,
DEV_API_HOST,
INTG_API_HOST,
STG_API_HOST,
API_HOST,
};