chore: add img2dataset to edge func

This commit is contained in:
Cory Dransfeldt 2024-04-22 09:28:39 -07:00 committed by GitHub
parent 8ddd2a0bb3
commit 5025939e5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,6 +34,7 @@ const botUas = [
'Google-Extended',
'GoogleOther',
'GPTBot',
'img2dataset',
'ImagesiftBot',
'magpie-crawler',
'Meltwater',
@ -60,4 +61,4 @@ export default async (request, context) => {
const response = isBot ? new Response(null, { status: 401 }) : await context.next();
return response
};
};