diff --git a/apps/demo/tsconfig.json b/apps/demo/tsconfig.json index eea7ea5..0c66908 100644 --- a/apps/demo/tsconfig.json +++ b/apps/demo/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "ES2017", + "target": "ES2022", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, diff --git a/apps/demo/vercel.json b/apps/demo/vercel.json new file mode 100644 index 0000000..dd53ee5 --- /dev/null +++ b/apps/demo/vercel.json @@ -0,0 +1,6 @@ +{ + "buildCommand": "cd ../.. && pnpm build && pnpm --filter @raygate/demo build", + "outputDirectory": ".next", + "installCommand": "cd ../.. && pnpm install --frozen-lockfile", + "framework": "nextjs" +}