SaltedFish
SaltedFish
obs能直接内录webview
是因为vercel被墙了,有空我看下如何解决
我试了一下,确实会有这个报错,不过我尝试了一下直接使用`react-activation`,目前来看也没问题的,以下是我的使用方式: 在`src/app.tsx`中新增如下代码: ```tsx import React from "react"; import { AliveScope } from 'react-activation'; export function rootContainer(container: React.ReactNode) { return ( {container} ); } ``` 页面上导出时使用`KeepAlive`包裹 ```tsx import styles from './index.less';...
You must use the `strict` mode or enable `strictNullChecks` in your tsconfig.json. It's worked to me.