0

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???

ross
  • 2,684
  • 2
  • 13
  • 22
X siege
  • 11
  • 2

1 Answers1

0

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.

https://developers.google.com/apps-script/guides/web

tanabee
  • 51
  • 2