Hello
For several years I have been using nwjs to create a desktop application using VUE JS 3 source via the nwb nwbuild command.
Everything worked all the time until Friday 30.5.2025 it throws me an error that it cannot load JSON.
Basically it tries to load some JSON format and it returns
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<hr>
<address>Server Apache/2.4.62 (Debian) on
nwjs.io Port 80</address>
</body></html>
function (arr, i) {
if (Array.isArray(arr)) {
return arr;
} else if ((0, _isIterable3.default)(Object(arr))) {
return sliceIterator(arr, i);
} else {
throw new TypeError("Invalid attempt to destructure non-iterable instance");
}
I managed to find out that this status is returned, for example, with
http://nwjs.io/versions.json.
However, if I fix this path to SSL - i.e.
https://nwjs.io/versions.json it returns me JSON with NWJS versions "latest": "v0.100.0",
Please, I am asking you how to continue this problem and continue developing the desktop from the source of the VUE JS 3 application using the nwb nwbuild command.
Thank you