let filePath = '../Views/jj_index.html' // Path of the HTML file
let fileObj = file.load({ id: filePath });
if (fileObj) {
let fileContent = fileObj.getContents();
this.scriptContext.response.headers['Content-Type'] = 'text/html';
this.scriptContext.response.write(fileContent);
} else {
this.scriptContext.response.write('HTML file not found');
}