Skip to content

Commit

Permalink
update redirect also use noscript redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
diversen7 committed Aug 13, 2024
1 parent bffc0bc commit 1553bf7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/generate-from-csv.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ function generateHtml(file, url) {
<meta name="robots" content="noindex, nofollow">
</head>
<body>
<noscript>
<meta http-equiv="refresh" content="0;url=${url}">
</noscript>
<noscript>
<meta http-equiv="refresh" content="0;url=${url}">
</noscript>
</body>
</html>`;
fs.writeFileSync(file, htmlContent);
}
Expand Down

0 comments on commit 1553bf7

Please sign in to comment.