Skip to content

Commit

Permalink
correct one typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
jialigit authored Mar 9, 2018
1 parent a25c899 commit 8447d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ npm install -g webpack webpack-dev-server
|7|```webpack --watch```|Will keep a watch on files to automatically rebuild the bundle|
|7|```webpack-dev-server```|webpack-dev-server is a development server, it binds a small express server on localhost:8080 which serves your static assets as well as the bundle|
|8|```webpack```|Multiple entry files are allowed|
|9|```webpack```|Code splitting and loading files on demand, Open browser and try ```localhost:8080``` see content-1 is loaded but not content-2, Now try execute ```localhost:8080/#load``` see content-1 and content-2 are both loaded|
|9|```webpack```|Code splitting and loading files on demand, Open browser and try ```localhost:8080``` see content-1 is loaded but not content-2, Now try ```localhost:8080/#load``` see content-1 and content-2 are both loaded|
|10|```webpack```|Shows how to load 3rd-party plugins|
|11|```webpack```|Shows how to load JSON file|
|12|```webpack```|Shows how to load raw file|
|13|```webpack```|Shows how to configure jshint & JSCS loaders for JavaScript linting|
|14|```webpack```|Shows how to load Handlebars templates file|
|15|```webpack```|Shows how to load LESS loader|
|16|```webpack```|Shows how to configure CSSLint loader for CSS linting|
|17|```webpack```|Shpws how to configure TypeScript loader for TS files|
|17|```webpack```|Shows how to configure TypeScript loader for TS files|

## Contributors

Expand Down

0 comments on commit 8447d98

Please sign in to comment.