Set a default main page on multiple html and GS(googlescript) files on Google Appscript,and Im going to publish it as a Web App
tried doGet function???
Set a default main page on multiple html and GS(googlescript) files on Google Appscript,and Im going to publish it as a Web App
tried doGet function???
Yes, You need to implement doGet function.
function doGet(e) {
var params = JSON.stringify(e);
return HtmlService.createHtmlOutput(params);
}
Please refer to the official page below for details.