Files
Osborne/client/next.config.ts
Arkaprabha Chakraborty 02a102481e init
2025-10-30 11:04:17 +05:30

18 lines
333 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
path: false,
os: false,
};
}
return config;
},
};
export default nextConfig;