diff --git a/src/pages/event.ts b/src/pages/event.ts deleted file mode 100644 index 4828f60..0000000 --- a/src/pages/event.ts +++ /dev/null @@ -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() -} diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 9d92c31..b49c957 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -5,16 +5,13 @@ const colors = require('tailwindcss/colors') module.exports = { content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], theme: { - fontFamily: { - fontFamily: { - // add your default font below - sans: ["Font Name", ...defaultTheme.fontFamily.sans], - }, - }, extend: { colors: { primary: colors.amber // primary color used by the projet, easily swappable }, + fontFamily: { + 'sans': ['Font Name', ...defaultTheme.fontFamily.sans] + }, container: { center: true, // default to center the container padding: {