Skip to content

Commit a9d7101

Browse files
committed
fix build
1 parent ad2fee7 commit a9d7101

File tree

2 files changed

+2
-2
lines changed
  • packages/next/src

2 files changed

+2
-2
lines changed

packages/next/src/build/swc/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ export interface TurbopackStackFrame {
608608
/** 1-indexed, unlike source map tokens */
609609
line?: number
610610
/** 1-indexed, unlike source map tokens */
611-
column?: number
611+
column?: number | null
612612
methodName?: string
613613
}
614614

packages/next/src/client/components/react-dev-overlay/server/shared.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import type { StackFrame } from 'stacktrace-parser'
12
import type { ServerResponse } from 'http'
23
import { codeFrameColumns } from 'next/dist/compiled/babel/code-frame'
3-
import type { StackFrame } from 'next/dist/compiled/stacktrace-parser'
44

55
export type SourcePackage = 'react' | 'next'
66

0 commit comments

Comments
 (0)