Skip to content

Commit d41568c

Browse files
authored
Merge pull request #3187 from myverdict/patch-10
Update part4a.md
2 parents 5a42012 + db51a3e commit d41568c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/4/en/part4a.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Once we make the changes to the directory structure of our project, we will end
1818
```bash
1919
├── index.js
2020
├── app.js
21-
├── build
21+
├── dist
2222
│ └── ...
2323
├── controllers
2424
│ └── notes.js
@@ -227,7 +227,7 @@ mongoose.connect(config.MONGODB_URI)
227227
})
228228

229229
app.use(cors())
230-
app.use(express.static('build'))
230+
app.use(express.static('dist'))
231231
app.use(express.json())
232232
app.use(middleware.requestLogger)
233233

@@ -307,7 +307,7 @@ To recap, the directory structure looks like this after the changes have been ma
307307
```bash
308308
├── index.js
309309
├── app.js
310-
├── build
310+
├── dist
311311
│ └── ...
312312
├── controllers
313313
│ └── notes.js

0 commit comments

Comments
 (0)