
https://github.com/vercel/next.js/issues/60687
I saw the fix for this issue was merged last week.
https://github.com/appwrite/sdk-generator/pull/834
I upgraded my local appwrite setup to 1.5.6 but still the issue seems to persist.
Can someone guide on how to add the fix to sdk for the local setup ?

Followed this https://appwrite.io/docs/tutorials/nextjs-ssr-auth/step-1 for handling ssr auth

Even the workaround provided in the issue is not working for me

/** @type {import('next').NextConfig} */
const webpack = require('webpack')
const nextConfig = {
webpack(config) {
config.plugins.push(
new webpack.NormalModuleReplacementPlugin(
/^isomorphic-form-data$/,
`${config.context}/form-data-mock.js`
)
)
return config
},
}
export default nextConfig
Added this to next.config.mjs
Recommended threads
- Image Loading issue in Snapgram project
Hello community, I have a issue with the Image Loading I made a Project from youtube of Snapgram, it worked perfectly 8 months ago, but now the images aren't l...
- No Targets Created For Email OTP Users
I use OTP for my users. All emails are verified. No one has their email as a target. What am I doing wrong? The documentation says the targets should be created...
- Retrieving user access token on client s...
I am trying to retrieve the user token from the cookies, but they are HTTP-only and can not be accessed. Is there a way to extract the user token from the cooki...
