-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(core): bump next-intl #1491
Conversation
🦋 Changeset detectedLatest commit: ecff89e The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
5 Skipped Deployments
|
2ba78a8
to
eeec861
Compare
core/app/admin/route.ts
Outdated
import { redirect } from '~/i18n/routing'; | ||
|
||
const canonicalDomain: string = process.env.BIGCOMMERCE_GRAPHQL_API_DOMAIN ?? 'mybigcommerce.com'; | ||
const BIGCOMMERCE_STORE_HASH = process.env.BIGCOMMERCE_STORE_HASH; | ||
const ENABLE_ADMIN_ROUTE = process.env.ENABLE_ADMIN_ROUTE; | ||
|
||
export const GET = () => { | ||
const locale = useLocale(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use getLocale
here?
core/app/xmlsitemap.php/route.ts
Outdated
@@ -8,6 +10,10 @@ import { permanentRedirect } from '~/i18n/routing'; | |||
* on /xmlsitemap.php | |||
*/ | |||
|
|||
export const GET = () => permanentRedirect('/sitemap.xml'); | |||
export const GET = () => { | |||
const locale = useLocale(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
Reported this issue from working on this: amannn/next-intl#1438 |
I had to pass default locale for these redirect in routes since next-intl does not work here. |
⚡️🏠 Lighthouse reportLighthouse ran against https://catalyst-latest-3y8sa2rdi-bigcommerce-platform.vercel.app 🖥️ DesktopWe ran Lighthouse against the changes on a desktop and produced this report. Here's the summary:
📱 MobileWe ran Lighthouse against the changes on a mobile and produced this report. Here's the summary:
|
What/Why?
next-intl
.createNavigation
api.locale
toredirects
.setRequestLocale
is no longer unstable.redirect
does not respectas-needed
locale prefix amannn/next-intl#1335Testing
Locally, redirecting on default locale will not append the default locale, just like Links.
Updated tests to match this behavior.