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
The build process fails on Windows due to path separator differences. The current code uses string replacement with hardcoded forward
slashes, but Windows uses backslashes.
Error:
Error: ENOENT: no such file or directory, open 'data..\data..\filename.mdx'
Solution:
Replace string manipulation with path.basename() which is cross-platform.