Skip to content

Commit cb725f0

Browse files
committedOct 9, 2024
fix(nuxt): prevent 404 when hitting component test endpoint

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed
 

‎packages/nuxt/src/pages/module.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,18 @@ export default defineNuxtModule({
409409
})
410410
}
411411

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+
}
412423
if (nuxt.options.experimental.appManifest) {
413-
const componentStubPath = await resolvePath(resolve(runtimeDir, 'component-stub'))
414424
// Add all redirect paths as valid routes to router; we will handle these in a client-side middleware
415425
// when the app manifest is enabled.
416426
nuxt.hook('pages:extend', (routes) => {

0 commit comments

Comments
 (0)
Please sign in to comment.