@@ -138,7 +138,6 @@ import { matchNextDataPathname } from './lib/match-next-data-pathname'
138
138
import getRouteFromAssetPath from '../shared/lib/router/utils/get-route-from-asset-path'
139
139
import { RSCPathnameNormalizer } from './normalizers/request/rsc'
140
140
import { PostponedPathnameNormalizer } from './normalizers/request/postponed'
141
- import { ActionPathnameNormalizer } from './normalizers/request/action'
142
141
import { stripFlightHeaders } from './app-render/strip-flight-headers'
143
142
import {
144
143
isAppPageRouteModule ,
@@ -435,7 +434,6 @@ export default abstract class Server<
435
434
protected readonly localeNormalizer ?: LocaleRouteNormalizer
436
435
437
436
protected readonly normalizers : {
438
- readonly action : ActionPathnameNormalizer | undefined
439
437
readonly postponed : PostponedPathnameNormalizer | undefined
440
438
readonly rsc : RSCPathnameNormalizer | undefined
441
439
readonly prefetchRSC : PrefetchRSCPathnameNormalizer | undefined
@@ -532,10 +530,6 @@ export default abstract class Server<
532
530
data : this . enabledDirectories . pages
533
531
? new NextDataPathnameNormalizer ( this . buildId )
534
532
: undefined ,
535
- action :
536
- this . enabledDirectories . app && this . minimalMode
537
- ? new ActionPathnameNormalizer ( )
538
- : undefined ,
539
533
}
540
534
541
535
this . nextFontManifest = this . getNextFontManifest ( )
@@ -1521,10 +1515,6 @@ export default abstract class Server<
1521
1515
normalizers . push ( this . normalizers . rsc )
1522
1516
}
1523
1517
1524
- if ( this . normalizers . action ) {
1525
- normalizers . push ( this . normalizers . action )
1526
- }
1527
-
1528
1518
for ( const normalizer of normalizers ) {
1529
1519
if ( ! normalizer . match ( pathname ) ) continue
1530
1520
0 commit comments