Skip to main content

Set up the project

In this course, we will leverage the Next.js framework for our frontend development. Our journey begins with the creation of a new project, where we utilize create-next-app while enabling the power of Tailwind CSS.

$ npx create-next-app@13.4.19 news-feed
✔ Would you prefer to use TypeScript? … Yes
✔ Would you like to incorporate ESLint? … Yes
✔ Would you like to harness the capabilities of Tailwind CSS? … Yes
✔ Would you like to adopt the `src/` directory structure? … Yes
✔ Would you like to utilize the recommended App Router? … Yes
✔ Would you like to customize the default import alias? … No

In this way, we embark on our project setup journey with Next.js and Tailwind CSS in style and efficiency.