Skip to content

Commit a819ae6

Browse files
committed
Comment out some text I added previously to avoid confusion
1 parent 5e8341e commit a819ae6

File tree

1 file changed

+4
-3
lines changed
  • pages/lessons/projects

1 file changed

+4
-3
lines changed

pages/lessons/projects/5.mdx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ The next command creates a sub-directory named `frontend` inside our root direct
8484
and sets up all the necessary files and folders within it. The `create-next-app` command
8585
uses the `yarn` package manager by default. **So be careful and choose your command accordingly**. We have been using `npm` as our package manager for all our previous builds, so we'll choose the `--use-npm` flags:
8686

87+
{/* We need to check the following commands and flags are up-to-date, and for a Javascript project, if we prefer to stick to JS over TypeScript: */}
8788

8889
```bash
8990
# choose the following for npm
@@ -92,8 +93,8 @@ npx create-next-app frontend --use-npm
9293
# careful, this is the default for yarn
9394
npx create-next-app frontend
9495
```
95-
{/* I'm assuming the following default steps are correct. Can you check that @wolovim?: */}
96-
Choose 'No' to *TypeScript*, because we want to create a *JavaScript* project, but choose 'Yes' to all the other options:
96+
{/* I'm not sure if the following steps are correct, but having this information in the lesson, can be a great guide (Rohit was under pressure to get it out, so might have overlooked adding it then) I'll comment it out for now, and we can update it accordingly: */}
97+
{/* Choose 'No' to *TypeScript*, because we want to create a *JavaScript* project, but choose 'Yes' to all the other options:
9798
9899
```bash
99100
Need to install the following packages:
@@ -106,7 +107,7 @@ Ok to proceed? (y) y
106107
✔ Would you like to use App Router? (recommended) … No / Yes
107108
✔ Would you like to customize the default import alias? … No / Yes
108109
Creating a new Next.js app in ../../d_d_academy/tierNFT/frontend.
109-
```
110+
``` */}
110111

111112
Once the setup is complete, we open the `frontend` directory and get cracking.
112113

0 commit comments

Comments
 (0)