Skip to content

Commit a18028e

Browse files
committed
make two lines a codeblock instead of inline code
1 parent c983ada commit a18028e

File tree

1 file changed

+6
-2
lines changed
  • app/web_development/tutorials/next-js-static-first-mdx-starterkit/package-json-scripts

1 file changed

+6
-2
lines changed

app/web_development/tutorials/next-js-static-first-mdx-starterkit/package-json-scripts/page.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,15 @@ In our run script we use two hyphen (`--`) tho indicate that it is the end of th
128128

129129
For example to launch the dev server on port 4000 without editing the package.json we could us this command:
130130

131-
`npm run dev -- -p 4000`
131+
```shell
132+
npm run dev -- -p 4000
133+
```
132134

133135
Or to start the production server:
134136

135-
`npm start -- -p 4000`
137+
```shell
138+
npm start -- -p 4000
139+
```
136140

137141
## Next.js CLI commands and NPM npx
138142

0 commit comments

Comments
 (0)