14 lines
439 B
JavaScript
14 lines
439 B
JavaScript
/**
|
|
* config.local.example.js — file mẫu (CÓ commit).
|
|
*
|
|
* Copy thành config.local.js (KHÔNG commit) rồi điền token thật:
|
|
*
|
|
* cp config.local.example.js config.local.js
|
|
*
|
|
* config.local.js đã được .gitignore và phải nạp TRƯỚC config.js trong index.html.
|
|
*/
|
|
window.APP_SECRETS = {
|
|
// Bearer token xác thực tới int.ipsupply.com.au
|
|
authorization: "Bearer <DÁN_TOKEN_CỦA_BẠN_VÀO_ĐÂY>",
|
|
};
|