You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Nuxt.js 3, the req object used in pattern.match is deprecated and will be removed in a future release. Replace it with the request object to ensure compatibility with future versions.
Reason for Change:
This update aligns with the standard Web Request API and supports the modernization and improvement of the Nuxt.js framework.
Recommended Action:
Replace all instances of event.req.url with event.request.url in your code to avoid potential issues and maintain compatibility with upcoming versions.
The text was updated successfully, but these errors were encountered:
Deprecation Notice:
req
inpattern.match
In Nuxt.js 3, the
req
object used inpattern.match
is deprecated and will be removed in a future release. Replace it with therequest
object to ensure compatibility with future versions.Affected Code:
Reason for Change:
This update aligns with the standard Web Request API and supports the modernization and improvement of the Nuxt.js framework.
Recommended Action:
Replace all instances of event.req.url with event.request.url in your code to avoid potential issues and maintain compatibility with upcoming versions.
The text was updated successfully, but these errors were encountered: