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
I just updated all of my dependencies and now I am getting this error.
Server boots up just fine. However when I try to load the page this error occurs:
After calling src/server.js at line 147:1 it seems to be passing in an undefined route path or something is glitching. How is that so? Clearly my paths are defined as shown in this post.
Inside server.js. Line 147:1 is the line starting with: const route = await router.resolve
And here is the class func in universal-router (copied straightly from node_modules) that cannot proceed because it is catching an undefined value route:
I just updated all of my dependencies and now I am getting this error.
Server boots up just fine. However when I try to load the page this error occurs:
After calling src/server.js at line 147:1 it seems to be passing in an undefined route path or something is glitching. How is that so? Clearly my paths are defined as shown in this post.
Inside server.js. Line 147:1 is the line starting with:
const route = await router.resolve
And here is the class func in universal-router (copied straightly from node_modules) that cannot proceed because it is catching an undefined value route:
So, in node_modules/src/UniversalRouter.js, how is it catching an undefined value when it is being executed after the context declaration?
Here are my routes.js:
The text was updated successfully, but these errors were encountered: