mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 10:11:13 -05:00
Fix: Add .js extensions to bot detection imports
This commit is contained in:
@@ -3,9 +3,9 @@
|
||||
* Combines user-agent patterns, header analysis, and behavioral heuristics
|
||||
*/
|
||||
|
||||
import { BOT_PATTERNS, GENERIC_BOT_REGEX } from './userAgentPatterns';
|
||||
import { analyzeHeaders } from './headerAnalysis';
|
||||
import { analyzeHeuristics } from './heuristics';
|
||||
import { BOT_PATTERNS, GENERIC_BOT_REGEX } from './userAgentPatterns.js';
|
||||
import { analyzeHeaders } from './headerAnalysis.js';
|
||||
import { analyzeHeuristics } from './heuristics.js';
|
||||
|
||||
export interface BotDetectionResult {
|
||||
isBot: boolean;
|
||||
|
||||
Reference in New Issue
Block a user