- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
"use strict";
|
|
/**
|
|
* Shared utilities and types for Redirect Intelligence v2
|
|
*/
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.constants = void 0;
|
|
__exportStar(require("./types/api"), exports);
|
|
exports.constants = {
|
|
API_BASE_URL: process.env.REACT_APP_API_URL || 'http://localhost:3333',
|
|
RATE_LIMIT: {
|
|
WINDOW_MS: 60 * 60 * 1000, // 1 hour
|
|
MAX_REQUESTS: 100,
|
|
},
|
|
REDIRECT_LIMITS: {
|
|
MAX_HOPS: 20,
|
|
TIMEOUT_MS: 15000,
|
|
RESPONSE_BODY_LIMIT: 5000,
|
|
},
|
|
};
|
|
//# sourceMappingURL=index.js.map
|