<BrowserRouter>
<Switch>
<Route
exact
path="/"
component={EmailVerification}
/>
<Route exact path={urlConfig.cashback} component={Cashback} />
<Route
exact
path={urlConfig.emailVerificationFailure}
component={EmailVerification}
/>
</Switch>
</BrowserRouter>
这是我的路线。当我使用 react-snap post build 时,只有第一条路线被抓取,而不是其他路线。
这是我的 package.json
"reactSnap": {
"inlineCss": true,
"fixWebpackChunksIssue": false
}
谁能让我知道可能是什么问题?