File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -409,8 +409,18 @@ export default defineNuxtModule({
409
409
} )
410
410
}
411
411
412
+ const componentStubPath = await resolvePath ( resolve ( runtimeDir , 'component-stub' ) )
413
+ if ( nuxt . options . test && nuxt . options . dev ) {
414
+ // add component testing route so 404 won't be triggered
415
+ nuxt . hook ( 'pages:extend' , ( routes ) => {
416
+ routes . push ( {
417
+ _sync : true ,
418
+ path : '/__nuxt_component_test__/:pathMatch(.*)' ,
419
+ file : componentStubPath ,
420
+ } )
421
+ } )
422
+ }
412
423
if ( nuxt . options . experimental . appManifest ) {
413
- const componentStubPath = await resolvePath ( resolve ( runtimeDir , 'component-stub' ) )
414
424
// Add all redirect paths as valid routes to router; we will handle these in a client-side middleware
415
425
// when the app manifest is enabled.
416
426
nuxt . hook ( 'pages:extend' , ( routes ) => {
You can’t perform that action at this time.
0 commit comments