tangled
alpha
login
or
join now
finxol.io
/
portfolio
0
fork
atom
Personal site
staging.colinozanne.co.uk
portfolio
astro
0
fork
atom
overview
issues
pulls
pipelines
feat: reroute to default locale (fr) in case none found
finxol.io
4 months ago
6e231a53
58937535
verified
This commit was signed with the committer's
known signature
.
finxol.io
SSH Key Fingerprint:
SHA256:olFE3asYdoBMScuJOt60UxXdJ0RFdGv5kVKrdOtIcPI=
+7
1 changed file
expand all
collapse all
unified
split
src
pages
[...others].astro
+7
src/pages/[...others].astro
···
1
1
+
---
2
2
+
const url = Astro.url;
3
3
+
4
4
+
url.pathname = "/fr" + url.pathname;
5
5
+
6
6
+
return Astro.redirect(url.href);
7
7
+
---