feat: add obfuscation

This commit is contained in:
shinya
2025-08-25 00:01:27 +08:00
parent 77d4e0820c
commit 0c514a37b8
13 changed files with 685 additions and 3 deletions
+2
View File
@@ -2,6 +2,8 @@ import { NextRequest, NextResponse } from 'next/server';
import { getCachedLiveChannels } from '@/lib/live';
export const runtime = 'nodejs';
export async function GET(request: NextRequest) {
try {
const { searchParams } = new URL(request.url);
+2
View File
@@ -2,6 +2,8 @@ import { NextRequest, NextResponse } from 'next/server';
import { getCachedLiveChannels } from '@/lib/live';
export const runtime = 'nodejs';
export async function GET(request: NextRequest) {
try {
const { searchParams } = new URL(request.url);
+2
View File
@@ -4,6 +4,8 @@ import { NextRequest, NextResponse } from 'next/server';
import { getConfig } from '@/lib/config';
export const runtime = 'nodejs';
export async function GET(request: NextRequest) {
console.log(request.url)
try {