aboutsummaryrefslogtreecommitdiff
path: root/apps/web/instrumentation.ts
blob: 60327ca527e6790560be32badee398f25e98f735 (plain) (blame)
1
2
3
4
5
6
7
8
9
export async function register() {
	if (process.env.NEXT_RUNTIME === "nodejs") {
		await import("./sentry.server.config");
	}

	if (process.env.NEXT_RUNTIME === "edge") {
		await import("./sentry.edge.config");
	}
}