Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions content/get-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Get Started with Webpack
contributors:
- bebraw
- varunjayaraman
sort: 3
---

Expand Down Expand Up @@ -50,9 +51,9 @@ __index.html__
<head>
<title>Webpack demo</title>
<script src='https://unpkg.com/lodash@4.16.6' type='text/javascript'></script>
<script src='index.js' type='text/javascript'></script>
</head>
<body>
<script src='app/index.js' type='text/javascript'></script>
</body>
</html>
```
Expand Down Expand Up @@ -83,7 +84,7 @@ Also we will need to change the `index.html` to expect a single bundled js file.
<head>
<title>Webpack demo</title>
- <script src='https://unpkg.com/lodash@4.16.6' type='text/javascript'></script>
- <script src='index.js' type='text/javascript'></script>
- <script src='app/index.js' type='text/javascript'></script>
+ <script src='dist/bundle.js' type='text/javascript'></script>
</head>
<body>
Expand Down