mirror of
https://github.com/tribufu/tribufu-js
synced 2026-05-18 09:35:44 +00:00
Add TRIBUFU_WEB_URL const
This commit is contained in:
parent
d84e903c34
commit
77d0896991
2 changed files with 10 additions and 2 deletions
|
|
@ -12,6 +12,12 @@ export const TRIBUFU_VERSION = "0.1.2";
|
|||
*/
|
||||
export const TRIBUFU_API_URL = "https://api.tribufu.com";
|
||||
|
||||
/**
|
||||
* The default Tribufu WEB URL.
|
||||
* @type {string}
|
||||
*/
|
||||
export const TRIBUFU_WEB_URL = "https://www.tribufu.com";
|
||||
|
||||
/**
|
||||
* The default Tribufu CDN URL.
|
||||
* @type {string}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
// Copyright (c) Tribufu. All Rights Reserved.
|
||||
|
||||
import {
|
||||
TRIBUFU_VERSION,
|
||||
TRIBUFU_API_URL,
|
||||
TRIBUFU_CDN_URL
|
||||
TRIBUFU_CDN_URL,
|
||||
TRIBUFU_VERSION,
|
||||
TRIBUFU_WEB_URL,
|
||||
} from "./constants";
|
||||
|
||||
export {
|
||||
TRIBUFU_API_URL,
|
||||
TRIBUFU_CDN_URL,
|
||||
TRIBUFU_VERSION,
|
||||
TRIBUFU_WEB_URL,
|
||||
};
|
||||
|
||||
import { TribufuApi } from "./api";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue