16 lines
405 B
JavaScript
16 lines
405 B
JavaScript
const BASE_URL = 'https://remark42.radio-t.com/';
|
|
const API_BASE = '/api/v1';
|
|
const NODE_ID = 'remark42';
|
|
const COUNTER_NODE_CLASSNAME = 'remark42__counter';
|
|
const LAST_COMMENTS_NODE_CLASSNAME = 'remark42__last-comments';
|
|
const LAST_COMMENTS_DEFAULT_MAX = 15;
|
|
|
|
module.exports = {
|
|
BASE_URL,
|
|
API_BASE,
|
|
NODE_ID,
|
|
COUNTER_NODE_CLASSNAME,
|
|
LAST_COMMENTS_NODE_CLASSNAME,
|
|
LAST_COMMENTS_DEFAULT_MAX,
|
|
};
|