Skip to content

Commit

Permalink
fix(viewer): cannot find package vue@next (#208)
Browse files Browse the repository at this point in the history
* fix(viewer): cannot find package vue@next

* Update index.html

Don't use specific versions for web dependencies.
  • Loading branch information
egakupi authored Jan 18, 2024
1 parent 8381d67 commit ddc7cb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/BinaryKits.Zpl.Viewer.WebApi/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<head>
<meta charset="utf-8" />
<title>BinaryKits.Zpl.Viewer.WebApi</title>
<script src="https://unpkg.com/vue@next"></script>
<script src="https://unpkg.com/axios@0.21.1/dist/axios.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/bootstrap@4.4.0/dist/css/bootstrap.css" />
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/bootstrap/dist/css/bootstrap.css" />
</head>
<body>
<div id="app" class="container-fluid mt-1">
Expand Down Expand Up @@ -209,4 +209,4 @@ <h4>Label rendering error</h4>
Vue.createApp(App).mount('#app');
</script>
</body>
</html>
</html>

0 comments on commit ddc7cb7

Please sign in to comment.