1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/client/src/constants/Config.js

13 lines
268 B
JavaScript
Raw Normal View History

const SERVER_BASE_URL = process.env.REACT_APP_SERVER_BASE_URL
|| (process.env.NODE_ENV === 'production' ? '' : 'http://localhost:1337');
2019-08-31 04:07:25 +05:00
const POSITION_GAP = 65535;
const ACTIONS_LIMIT = 10;
export default {
SERVER_BASE_URL,
2019-08-31 04:07:25 +05:00
POSITION_GAP,
ACTIONS_LIMIT,
};