mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 17:25:03 +03:00
14 lines
270 B
JavaScript
Executable File
14 lines
270 B
JavaScript
Executable File
const SERVER_BASE_URL =
|
|
process.env.REACT_APP_SERVER_BASE_URL ||
|
|
(process.env.NODE_ENV === 'production' ? '' : 'http://localhost:1337');
|
|
|
|
const POSITION_GAP = 65535;
|
|
|
|
const ACTIONS_LIMIT = 10;
|
|
|
|
export default {
|
|
SERVER_BASE_URL,
|
|
POSITION_GAP,
|
|
ACTIONS_LIMIT,
|
|
};
|