我在接手 app具时,或当我把电灯放在电放器上时,会遇到麻烦,难以找到一条改道去工作。 我的道路是:
<Route path="/" element={userID ? <Home /> : <Login />} />
<Route path="/register" element={userID ? <Home /> : <Register />} />
<Route path="/forgotPassword" element= {userID ? <Home /> : <ForgotPassword /> } />
<Route path="/resetPassword/:id/:token" element={userID ? <Home /> : <ResetPassword /> } />
当我用<代码>npm开动代码>,所有这些路线都行得起。 然而,当我以建造方式管理这些公路时,或者当有人在放任时,“翻版”路线不会奏效,所有其他路线仍然行不通。 但是,关于重塑Pasword,如“Cannot GET /resetPasword/123/456”这一页。 这条路由背后产生,然后用电子邮件发出,但我认为这不会改变。
I tried going into package.json and adding "homepage": "." or "./", even tried setting it to "http://localhost:3000" to see if it fixed build mode. It did not. What s the issue here?
此外,在我的服务器上,我有这一代码,但无法确定是否需要改动:app.use(/,明示.static(path.join(_dirname, ./client/build )>;
。