- Keep show/hide details button in place when expanded (#18) - Use i18n translations for details toggle text - Split instrumentation for Edge Runtime compatibility - Patch minimatch ReDoS (CVE-2026-27903)
6 lines
132 B
TypeScript
6 lines
132 B
TypeScript
export async function register() {
|
|
if (process.env.NEXT_RUNTIME === "nodejs") {
|
|
await import("./instrumentation.node");
|
|
}
|
|
}
|