You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are you using Next? If you don't explictly use any of the file function stuff, then check out using this as your next.config.js:
/** @type {import('next').NextConfig} */constnextConfig={
...
webpack(config){config.resolve.fallback={
...config.resolve.fallback,// if you miss it, all the other options in fallback, specified// by next.js will be dropped. Doesn't make much sense, but how it isfs: false,// the solution}returnconfig}}module.exports=nextConfig
/// <reference types="node" />
should be removed fromd.ts
, removing@types/node
dependency should solve the issue.The text was updated successfully, but these errors were encountered: