From the course: Next.js Ecommerce: Build a Shopping Platform from Scratch

Unlock this course with a free trial

Join today to access over 25,200 courses taught by industry experts.

Create Next app and assets

Create Next app and assets

All right, so we're going to get started on our project. And in this video, we're just going to set up our initial application using Create Next app. And we're just going to clean some stuff up, some of the demo content. And then I have a download in this lesson with a folder called Resources, which should look like this. It has an Assets folder, Images, Favicon. And we're going to be just bringing these into our project. All right, so let's start off by opening a terminal. go to wherever you want to create this project. Make sure you have Node.js installed. And then we're going to run npx create-next-app at latest. Now, latest for me at this point is 15.0.3. And yours might be a later version. That's fine. As long as it's at least next 15, then you should be fine. So the project name, I'm going to call it Pro Store. And then we're going to use TypeScript. We're going to use ESLint and Tailwind. And I'm going to say no to the source directory, yes to the app router, no to the…

Contents