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
We want the UI for our ABI to always be accessible after we have submitted it once.
In node, something like this
`
var fs = require('fs');
fs.writeFile("/path/to/destination.html", output, function(err) {
if(err) {
return console.log(err);
}
console.log("The file was saved!");
});
`
The text was updated successfully, but these errors were encountered:
We want the UI for our ABI to always be accessible after we have submitted it once.
In node, something like this
`
var fs = require('fs');
fs.writeFile("/path/to/destination.html", output, function(err) {
if(err) {
return console.log(err);
}
});
`
The text was updated successfully, but these errors were encountered: