File tree Expand file tree Collapse file tree 2 files changed +1
-1
lines changed
packages/nuxt/src/runtime Expand file tree Collapse file tree 2 files changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ export default defineNuxtPlugin(nuxtApp => {
1111 // @ts -expect-error This import is dynamically resolved at build time (`addTemplate` in module.ts)
1212 const { default : importedPagesData } = await import ( '#build/sentry--nuxt-pages-data.mjs' ) ;
1313 buildTimePagesData = importedPagesData || [ ] ;
14+ logger . log ( 'Imported build-time pages data:' , buildTimePagesData ) ;
1415 } catch ( error ) {
1516 buildTimePagesData = [ ] ;
1617 logger . warn ( 'Failed to import build-time pages data:' , error ) ;
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ export function extractParametrizedRouteFromContext(
2929 buildTimePagesData : NuxtPageSubset [ ] = [ ] ,
3030) : null | { parametrizedRoute : string } {
3131 if ( ! ssrContextModules || ! currentUrl ) {
32- logger . warn ( 'SSR context modules or URL is not available.' ) ;
3332 return null ;
3433 }
3534
You can’t perform that action at this time.
0 commit comments