I must be doing something wrong when adding the new <script>
line, because after adding it I see this new console error message:
Uncaught SyntaxError: Unexpected token '<' serviceworker.js:1
The error does not appear when running with the IDE in TMS Webserver but it shows up when running the compiled code in my app's "Tiny server". Below is my index.html file. I added the new line just after the one I found had been added for Bootstrap. Do I need to put the new line somewhere else or what is the problem?
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta $(ThemeColor)/>
<noscript>Your browser does not support JavaScript!</noscript>
<link href="IconResMid.png" rel="icon" sizes="256x256"/>
<link href="IconResMid.png" rel="apple-touch-icon"/>
<meta $(Manifest)/>
<title>CW_EPG_Remote</title>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" type="text/javascript"></script>
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"/>
<script src="$(ProjectName).js" type="text/javascript"></script>
<script type="text/javascript" src="serviceworker.js"></script>
<style>
</style>
</head>
<body>
<meta $(BodyParameters)/>
</body>
<script type="text/javascript">rtl.run();</script>
</html>