-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: force trailing slash in url's (#1249)
Co-authored-by: Dharamveer singh <[email protected]>
- Loading branch information
1 parent
c6b9640
commit 891688f
Showing
4 changed files
with
14 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
User-agent: * | ||
Allow: / | ||
Disallow: | ||
Sitemap: https://docs.axelar.dev/sitemap-0.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,18 +35,6 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site); | |
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<script | ||
type="text/partytown" | ||
src="https://www.googletagmanager.com/gtag/js?id=G-81ZT0BK1ZB"></script> | ||
<script type="text/partytown"> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag("js", new Date()); | ||
|
||
gtag("config", "G-81ZT0BK1ZB"); | ||
</script> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
@@ -95,6 +83,18 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site); | |
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/themes/satellite-min.css" | ||
/> | ||
<script | ||
type="text/partytown" | ||
src="https://www.googletagmanager.com/gtag/js?id=G-81ZT0BK1ZB"></script> | ||
<script type="text/partytown"> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag("js", new Date()); | ||
|
||
gtag("config", "G-81ZT0BK1ZB"); | ||
</script> | ||
<script src="/src/scripts/index.ts"></script> | ||
<script is:inline> | ||
const root = document.documentElement; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters