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
{{ message }}
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.
development-server.js strips off the leading "file://", which leaves a path like "/C:/path/to/file" that Windows doesn't understand:
I think this could be fixed trivially by replacing url.replace("file://", "") with the built-in url.fileURLToPath function, but I'm not sure if the minimum supported version of Node would be new enough to provide it?
The text was updated successfully, but these errors were encountered:
development-server.js strips off the leading "file://", which leaves a path like "/C:/path/to/file" that Windows doesn't understand:
I think this could be fixed trivially by replacing
url.replace("file://", "")
with the built-inurl.fileURLToPath
function, but I'm not sure if the minimum supported version of Node would be new enough to provide it?The text was updated successfully, but these errors were encountered: