When deploying a web application in GAS and rendering HTML, the description would be as follows.
'''
let indexHtml = HtmlService.createTemplateFromFile('index');
return indexHtml.evaluate()
.setTitle('title')
.setFaviconUrl('imageUrl')
.addMetaTag('viewport', 'width=device-width, initial-scale=1');
'''
This metatag allows for responsive design support, but with recent updates, it seems that viewport is no longer working.
If anyone has any information, please let me know.
Translated with
www.DeepL.com/Translator (free version)