Skip to content

Commit

Permalink
Merge bcd8390 into 5c88a38
Browse files Browse the repository at this point in the history
  • Loading branch information
120c0 authored Aug 3, 2024
2 parents 5c88a38 + bcd8390 commit 63af03d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/next/src/server/lib/start-server.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
if (performance.getEntriesByName('next-start').length === 0) {
performance.mark('next-start')
if(performance.getEntriesByName !== undefined) {
if (performance.getEntriesByName('next-start').length === 0) {
performance.mark('next-start')
}
}

import '../next'
import '../require-hook'

Expand Down

0 comments on commit 63af03d

Please sign in to comment.