You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But then the links in the emails sent by Netlify upon registration or forgotten email all point to /#invite_token=2EUz71D9siVlVLJjsPhj1w which then redirects to /en without the extra #invite_token.
Would there be a way to specify the URL in the emails to be /en ?
Or could we change src/pages/index.astro so that upon redirecting it preserves the #invite_token ?
Thank you so much :)
The text was updated successfully, but these errors were encountered:
Hi there and thanks for this great integration :)
I have everything up and running and it worked great, until I turned on
showDefaultLocale
totrue
in my i18next config file.What this does is that instead of having the urls for the default language on
/
, they are on/en
. (i.e./blog
becomes/en/blog
)So for the homepage, as stated in Astro's docs, I just have this
src/pages/index.astro
:Which just redirects from
/
to/en
.But then the links in the emails sent by Netlify upon registration or forgotten email all point to
/#invite_token=2EUz71D9siVlVLJjsPhj1w
which then redirects to/en
without the extra#invite_token
.Would there be a way to specify the URL in the emails to be
/en
?Or could we change
src/pages/index.astro
so that upon redirecting it preserves the#invite_token
?Thank you so much :)
The text was updated successfully, but these errors were encountered: