You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
// Copyright (C) 2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import _cvat from 'cvat-core/src/api';
|
|
|
|
const cvat: any = _cvat;
|
|
|
|
cvat.config.backendAPI =
|
|
typeof process.env.REACT_APP_API_URL === 'undefined' ? '/api/v1' : `${process.env.REACT_APP_API_URL}/api/v1`;
|
|
|
|
export default function getCore(): any {
|
|
return cvat;
|
|
}
|