restaf-server
Version:
Custom app server for Viya apps
11 lines • 339 B
JavaScript
/*
* Copyright © 2019, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
;
async function reDirector (req,h) {
debugger;
let indexHTML = (process.env.APPENTRY == null) ? 'index.html' : process.env.APPENTRY;
return h.file(`${indexHTML}`);
}
export default reDirector;