#nextjs
Read more stories on Hashnode
Articles with this tag
在這個檔案中,我看到 pathname computed property 直接訪問了 window 對象。在 SSR (Server-Side Rendering) 環境中這會導致錯誤,因為服務器端沒有 window 對象。我們需要修改這部分代碼: 主要改動: 使用 process.client...