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
hey @ChangoMan, hope you are doing well. I'm getting the below error message when starting up the nextjs-starter-dimension repo using the readme.md instructins.
error message:
✓ Ready in 23.7s
○ Compiling / ...
Using external babel configuration from /mnt/c/Users/karki/OneDrive/Desktop/karthik-personal-website/.babelrc
⨯ ./node_modules/next/dist/client/dev/on-demand-entries-client.js
Error: Failed to resolve "@babel/runtime/regenerator"
this is my package.json (had to modify the next version and sass version based on stackoverflow threads and documentation)
I'm wondering if you are able to push a fix to the starter template with the updated versions and needed dependencies ASAP? This is blocking me from migrating my personal website on vanilla html/css to next.js
The text was updated successfully, but these errors were encountered:
@ChangoMan I was able to get some sort of "hacky fix working" here. Your starter template was very helpful as a launch point for my use case. However, I strongly, strongly recommend that updates be made to this template since I noticed several things that were outdated including but not limited to:
The template uses next js v7, but to my knowledge v14 is preferred due to these docs. That could change very soon, but it's good to update the next version in package.json
The paradigm of React being used is class components. However, React docs really recommend functional components. We should refactor accordingly
I noticed that a few dependencies were missing regarding fontawesome as seen here
The import for FontAwesomeIcon is incorrect. I think that {FontAwesomeIcon} is needed (including curly braces) as per the docs
We should also refactor the article ids of About, Contact, Work etc into separate react components to make extensibility easier for other's use cases
I and the community would really appreciate it if you could make these updates to the original template for easier extensibility. Thanks for your help :)
hey @ChangoMan, hope you are doing well. I'm getting the below error message when starting up the
nextjs-starter-dimension
repo using the readme.md instructins.error message:
this is my package.json (had to modify the
next
version andsass
version based on stackoverflow threads and documentation)I'm wondering if you are able to push a fix to the starter template with the updated versions and needed dependencies ASAP? This is blocking me from migrating my personal website on vanilla html/css to next.js
The text was updated successfully, but these errors were encountered: