From f1e0aabca9bd3b9c4eba76e7ab6d3934e5f8d712 Mon Sep 17 00:00:00 2001 From: Erisa A Date: Sat, 4 Mar 2023 19:46:08 +0000 Subject: [PATCH] Small sorting --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 5c8ecd4..f208f0d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -224,8 +224,6 @@ app.all('*', (c) => ), ) -export default app - // PLAUSIBLE_HOST should be the full URL to your Plausible Analytics instance // e.g. https://plausible.io/ async function sendToPlausible(c: Context) { @@ -268,3 +266,5 @@ function validateUrl(url: string) { // ([key, url]) => keyRe.test(key) && validateUrl(url) // ); // } + +export default app