shift script include URLs to be relative

This commit is contained in:
2023-07-26 17:24:49 -06:00
parent b680336ba4
commit c54c57b37a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -76,12 +76,12 @@
And i discovered a future potential pitfall And i discovered a future potential pitfall
--> -->
<script src="dist/jex_include/local-tweetnacl-1.0.3/dist/nacl.js"></script> <script src="./dist/jex_include/local-tweetnacl-1.0.3/dist/nacl.js"></script>
<!-- <!--
this is a non-issue this is a non-issue
--> -->
<script type="module" <script type="module"
src="dist/background.js"></script> src="./dist/background.js"></script>
</body> </body>
</html> </html>
+1 -1
View File
@@ -43,6 +43,6 @@
</pre> </pre>
<script type="module" src="dist/popup.js"></script> <script type="module" src="./dist/popup.js"></script>
</body> </body>
</html> </html>