Is junior built with Next.js?
This post might have stale content, as HEAD is 20 commits ahead.
is this next.js?
Yes, this is a Next.js project. More specifically, it's a pnpm monorepo that's deeply tied to Next.js:
-
The example app (
apps/example) is a straightforward Next.js app — it usesnext dev,next build,next start, and depends onnext@^16.1.6. -
The core
@sentry/juniorpackage (packages/junior) is built as a Next.js plugin/integration:- It has
nextandreactas peer dependencies (next >= 15.0.0). - Its exports are Next.js-oriented:
./configmaps tonext-config.js,./app/layoutmaps toapp/layout.js(App Router), and it exposes route handlers (./handler,./handlers/webhooks, etc.). - It also depends on
@sentry/nextjsas a peer dependency.
- It has
So the whole project is a Next.js-based AI agent framework — @sentry/junior is a library you plug into a Next.js app, and apps/example demonstrates that usage.
END OF POST