We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import { KeepAlive } from 'umi'; export default () => ( <KeepAlive> <Home /> </KeepAlive> );
import { KeepAlive } from 'umi';
export default () => ( <KeepAlive> <Home /> </KeepAlive> );
The text was updated successfully, but these errors were encountered:
react 版本是18 吗
Sorry, something went wrong.
反应版本是18吗
17.x
那可能是某些库导致 @types/react 版本升高了,18 版本的 react 类型发生了较大变化 需要在 package.json 中固定一下 @types/react 的版本到 17.x
{ "resolutions": { "@types/react": "17" }, }
那可能是某些库导致 @types/react 版本升高了,18 版本的 react 类型发生了较大变化 需要在 package.json 中固定一下 @types/react 的版本到 17.x { "resolutions": { "@types/react": "17" }, }
也遇到同样的问题,添加了该配置没有生效
No branches or pull requests
import { KeepAlive } from 'umi';
export default () => ( <KeepAlive> <Home /> </KeepAlive> );
The text was updated successfully, but these errors were encountered: