Merge pull request #6170 from EugeneHlushko/fix/example-dll-app-and-vendor

Fix DLL example
This commit is contained in:
Tobias Koppers 2017-12-22 08:19:45 +01:00 committed by GitHub
commit c017357cce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -40,8 +40,8 @@ console.log(new square(7));
<html>
<head></head>
<body>
<script src="js/vendor.bundle.js" charset="utf-8"></script>
<script src="js/app.bundle.js" charset="utf-8"></script>
<script src="../0-vendor/js/vendor.js" charset="utf-8"></script>
<script src="js/app.js" charset="utf-8"></script>
</body>
</html>
```

View File

@ -1,7 +1,7 @@
<html>
<head></head>
<body>
<script src="js/vendor.bundle.js" charset="utf-8"></script>
<script src="js/app.bundle.js" charset="utf-8"></script>
<script src="../0-vendor/js/vendor.js" charset="utf-8"></script>
<script src="js/app.js" charset="utf-8"></script>
</body>
</html>