Skip to content
This repository was archived by the owner on Sep 7, 2021. It is now read-only.

Commit f82f26d

Browse files
committed
README markdown changes
1 parent 575b5d5 commit f82f26d

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,17 @@ run `npm install webpack-dev-server` and `npm install react-hot-loader`.
4747
- Then in your HTML, change your javascript bundles' source paths to point to the webpack-dev-server proxy in your `script` tags. So if you have something
4848
like this
4949

50-
`<script src="/dist/js/vendors.js"></script>
51-
<script src="/dist/js/app.bundle.js"></script>`
52-
50+
```html
51+
<script src="/dist/js/vendors.js"></script>
52+
<script src="/dist/js/app.bundle.js"></script>
53+
```
5354

5455
change this to
5556

56-
`<script src="http://localhost:8080/dist/js/vendors.js"></script>
57-
<script src="http://localhost:8080/dist/js/app.bundle.js"></script>`
58-
57+
```html
58+
<script src="http://localhost:8080/dist/js/vendors.js"></script>
59+
<script src="http://localhost:8080/dist/js/app.bundle.js"></script>
60+
```
5961

6062
This is still a work in progress and will get better over time. Will try and think of more essential features. Looking for feedback and contributions! For any discussions or queries, send an email.
6163

0 commit comments

Comments
 (0)