fix: Tailwind invalid config
All checks were successful
Build, check & Test / run (push) Successful in 6m54s

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2023-10-11 22:53:43 +02:00
parent 7f53a6473e
commit f1d535073e
2 changed files with 3 additions and 29 deletions

View File

@ -1,23 +0,0 @@
import type { APIRoute } from 'astro'
import ResponseBuilder from 'libs/ResponseBuilder'
/**
* Plausible proxy
*/
export const POST: APIRoute = async ({ request, clientAddress }) => {
// const body = await request.json()
// console.log(body, clientAddress)
const res = await fetch('https://plausible.io/api/event', {
method: 'POST',
headers: {
'User-Agent': request.headers.get('User-Agent') as string,
'X-Forwarded-For': clientAddress,
'Content-Type': 'application/json'
},
body: await request.text()
})
return new ResponseBuilder()
.status(res.status)
.body(await res.text())
.build()
}