Skip to content

Commit

Permalink
fix: noscript tag (#294)
Browse files Browse the repository at this point in the history
* issue 213 - add noscript tag to html templates

* issue 213 - add changeset

Co-authored-by: Carlos Jaramillo <[email protected]>
  • Loading branch information
cejaramillof and cejaramillof authored May 13, 2021
1 parent 8f1c94f commit 70226ef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/nine-apes-admire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"generator-single-spa": patch
---

add noscript tag to html templates
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@
<% } %>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<main></main>
<script>
System.import('@<?- orgName ?>/root-config');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@

</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<script>
System.import('@<?- orgName ?>/root-config');
</script>
Expand Down

0 comments on commit 70226ef

Please sign in to comment.