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
I try to deploy locally, but I get "The specified scope does not exist"
$ npx vercel
Vercel CLI 20.1.4
Error! The specified scope does not exist
> More details: https://err.sh/vercel/scope-not-existent
This is because you're using NRN own scope in your vercel.*.json files.
Remove the whole line "scope": "team_qnVfSEVc2WwmOE1OYhZr4VST", in all vercel.*.json files.
Tip: Don't forget vercel.json is a symlink and shouldn't to be modified (run ln vercel.staging.json vercel.json if you messed it up 😉)
How is the i18nextInstance passed to react?
**Question**: _I wanted to understand how the i18next integration works. How is the `i18nextInstance` passed to react? It seems to be passed to the `Layout` component, but the `Layout` component never uses it. So how does this work?_
The i18nextInstance isn't necessary to perform translations actually, it's forwarded as a utility.
Manipulating the i18nextInstance is not necessary, using import { Trans, useTranslation } from 'react-i18next'; is what you'll need most of the time when translating content.
The i18next library is actually initiated in i18nextLocize.ts
Should I be keeping the MST tenancy design even though I don't have use for it?
**Question**: _I don't find the "plugin" system that highly customizable since "plugins" seem to already be bundled into the 2 main templates you offer, and I have been having hard time trying to rip things out that I don't need (i18n/locize, example app, MST tenancy (although looks like I can opt out by not using certain vercel json files), and etc.)._
**Question**: _I don't find the "plugin" system that highly customizable since "plugins" seem to already be bundled into the 2 main templates you offer, and I have been having hard time trying to rip things out that I don't need (i18n/locize, example app, MST tenancy, etc.)._
**Question**: _I would like to understand the purpose of this component `MultiversalAppBootstrap.tsx` and its siblings components `BrowserPageBootstrap.tsx`, `ServerPageBootstrap.tsx` and `UniversalGlobalStyles.tsx`, I may have missed something in the documentation. But I don't understand its usefulness knowing that we have `_app` and `_document`... are to separate the logic of each type of rendering, or only for maintainability purposes?_