Practice REST API and GraphQL while creating a simple SNS service based on React. We introduce how to easily and simply create a backend environment for frontend development.
Next.js 12 Update Information
Next.js main version was updated to 12 last November (I can't believe they change the main version so often ㅠ)
I checked and there are almost no changes from version 11, only new features have been added and performance has improved.
Things to keep in mind when upgrading:
It is said that node.js version must be 12.22.0 or higher , and webpack version 5 must be used.
Even those who have already completed the course can try deleting/reinstalling only Next for testing purposes :)
-------------------------------
The following is an excerpt from the release notice detailing only the 'differences' from version 11.
After making webpack 5 the default in Next.js 11 , we've now officially removed webpack 4. We've worked closely with the community to ensure a smooth transition to webpack 5.
target in next.config.js is no longer needed.
next/image now uses a span as the wrapping element instead of a div.
The minimum Node.js version has been bumped from 12.0.0 to 12.22.0, which is the first version of Node.js with native ES modules support.