Compare commits

...

6 Commits

Author SHA1 Message Date
gpt-engineer-app[bot]
d1b9ea9d89 Add vercel/node dependency 2025-10-29 19:49:35 +00:00
gpt-engineer-app[bot]
d00f358e5c Re-add dependencies to package.json 2025-10-29 19:49:05 +00:00
pacnpal
8eb8dc21cd Delete package-lock.json 2025-10-29 15:46:54 -04:00
pacnpal
26adc0f75c Delete pnpm-lock.yaml 2025-10-29 15:46:43 -04:00
gpt-engineer-app[bot]
2482420780 Fix Vercel build by forcing Bun 2025-10-29 19:44:37 +00:00
gpt-engineer-app[bot]
d14dc3a144 Fix pnpm lockfile 2025-10-29 19:37:39 +00:00
5 changed files with 1008 additions and 7683 deletions

View File

@@ -1,7 +1,19 @@
import { VercelRequest, VercelResponse } from '@vercel/node'; import type { IncomingMessage, ServerResponse } from 'http';
import { readFileSync } from 'fs'; import { readFileSync } from 'fs';
import { join } from 'path'; import { join } from 'path';
type VercelRequest = IncomingMessage & {
query: { [key: string]: string | string[] };
cookies: { [key: string]: string };
body: any;
};
type VercelResponse = ServerResponse & {
status: (code: number) => VercelResponse;
json: (data: any) => VercelResponse;
send: (body: string) => VercelResponse;
};
// Bot detection configuration // Bot detection configuration
const SOCIAL_BOTS = { const SOCIAL_BOTS = {
'facebookexternalhit': 'facebook', 'facebookexternalhit': 'facebook',

1728
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -17,6 +17,8 @@
"@hookform/resolvers": "^3.10.0", "@hookform/resolvers": "^3.10.0",
"@marsidev/react-turnstile": "^1.3.1", "@marsidev/react-turnstile": "^1.3.1",
"@mdxeditor/editor": "^3.47.0", "@mdxeditor/editor": "^3.47.0",
"@novu/headless": "^2.6.6",
"@novu/node": "^2.6.6",
"@novu/react": "^3.10.1", "@novu/react": "^3.10.1",
"@radix-ui/react-accordion": "^1.2.11", "@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-alert-dialog": "^1.1.14", "@radix-ui/react-alert-dialog": "^1.1.14",

6945
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,6 @@
{ {
"installCommand": "bun install",
"buildCommand": "bun run build",
"rewrites": [ "rewrites": [
{ {
"source": "/", "source": "/",