This repository was archived by the owner on Jun 3, 2026. It is now read-only.
v0.129.0
Changed
-
breaking change: Usage of Node
async_hookshas been renamed fromnode:async_hookstoasync_hooksfor easier Webpack configuration. To exclude theasync_hooksfrom client-side bundling, you can use the following config for Next.js (next.config.mjsornext.config.js):/** * @type {import('next').NextConfig} */ const nextConfig = { webpack: (config, { isServer }) => { if (isServer) { return config; } config.resolve = config.resolve ?? {}; config.resolve.fallback = config.resolve.fallback ?? {}; // async hooks is not available in the browser: config.resolve.fallback.async_hooks = false; return config; }, };