Skip to content

Commit

Permalink
fix bug ....
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Dec 15, 2016
1 parent 4a9e198 commit 39b5070
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ npm install babel-loader babel-preset-es2015 babel-preset-react react react-dom
```html
<html>
<body>
<div id="wrapper"></div>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>
Expand Down
1 change: 1 addition & 0 deletions demo02/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<title>Webpack demo</title>
</head>
<body>
<div id="wrapper"></div>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion demo17/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<html>
<body>
<div id="app"></div>
<script src="/bundle.js"></script>
<script src="bundle.js"></script>
</body>
</htmL>
2 changes: 1 addition & 1 deletion demo17/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
entry: './index.jsx',
output: {
filename: 'bundle.js'
filename: './bundle.js'
},
module: {
loaders:[
Expand Down

0 comments on commit 39b5070

Please sign in to comment.