File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -289,6 +289,8 @@ export function getDefineEnv({
289
289
: { } ) ,
290
290
'process.env.__NEXT_DEVTOOL_SEGMENT_EXPLORER' :
291
291
config . experimental . devtoolSegmentExplorer ?? false ,
292
+ 'process.env.__NEXT_DEVTOOL_NEW_PANEL_UI' :
293
+ config . experimental . devtoolNewPanelUI ?? false ,
292
294
'process.env.__NEXT_TURBOPACK_PERSISTENT_CACHE' :
293
295
config . experimental . turbopackPersistentCaching ?? false ,
294
296
}
Original file line number Diff line number Diff line change @@ -499,6 +499,7 @@ export const configSchema: zod.ZodType<NextConfig> = z.lazy(() =>
499
499
. optional ( ) ,
500
500
globalNotFound : z . boolean ( ) . optional ( ) ,
501
501
devtoolSegmentExplorer : z . boolean ( ) . optional ( ) ,
502
+ devtoolNewPanelUI : z . boolean ( ) . optional ( ) ,
502
503
} )
503
504
. optional ( ) ,
504
505
exportPathMap : z
Original file line number Diff line number Diff line change @@ -694,6 +694,11 @@ export interface ExperimentalConfig {
694
694
* Enable segment viewer for the app directory in dev tool.
695
695
*/
696
696
devtoolSegmentExplorer ?: boolean
697
+
698
+ /**
699
+ * Enable new panel UI for the dev tool.
700
+ */
701
+ devtoolNewPanelUI ?: boolean
697
702
}
698
703
699
704
export type ExportPathMap = {
You can’t perform that action at this time.
0 commit comments