mirror of
https://github.com/HugoAura/Seewo-HugoAura.git
synced 2026-06-20 23:14:28 +08:00
14 lines
334 B
JavaScript
14 lines
334 B
JavaScript
|
|
/// Rewrite rules basic config section begins ///
|
||
|
|
|
||
|
|
const type = "networkRequest";
|
||
|
|
|
||
|
|
const urlPattern = "device/behaviorAudit";
|
||
|
|
|
||
|
|
/// End of the rewrite rules basic config section ///
|
||
|
|
|
||
|
|
const requestHook = (originalReq) => {
|
||
|
|
return { redirectURL: "https://127.0.255.255:1145/" };
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = { type, urlPattern, requestHook };
|