Skip to content

Commit cac8833

Browse files
committed
Add correct code lang blocks
1 parent fd21551 commit cac8833

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/how-to/develop-using-vagrant.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ end
1414

1515
Next, install webpack and webpack-dev-server in your project;
1616

17-
```
17+
```shell
1818
npm install webpack webpack-dev-server --save-dev
1919
```
2020

@@ -45,7 +45,7 @@ Note that you also need to create an `app.js` file.
4545

4646
Now, let's run the server:
4747

48-
```
48+
```shell
4949
webpack-dev-server --host 0.0.0.0 --public 10.10.10.61:8080 --watch-poll
5050
```
5151

@@ -64,7 +64,7 @@ To mimick a more production-like environment, it is also possible to proxy the w
6464

6565
In your nginx config file, add the following:
6666

67-
```
67+
```nginx
6868
server {
6969
location / {
7070
proxy_pass http://127.0.0.1:8080;

0 commit comments

Comments
 (0)