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
A temporary fix is to disable the experimental feature by setting the NODE_OPTIONS environment variable to --no-experimental-require-module, or downgrading Node to a lower version below Node v22.
Windows Example:
$env:NODE_OPTIONS='--no-experimental-require-module'; moonwave dev
The text was updated successfully, but these errors were encountered:
Issue
Incompatibility with Node v23, Node v22.12.0.
An experimental feature in Node v23 has been enabled by default, this feature changes the behavior of
require()
which results in an error atdocusaurus-plugin-moonwave/src/generateRobloxTypes.js:9
.Temporary Fix
A temporary fix is to disable the experimental feature by setting the
NODE_OPTIONS
environment variable to--no-experimental-require-module
, or downgrading Node to a lower version below Node v22.Windows Example:
The text was updated successfully, but these errors were encountered: