Spaces:
Running
Running
File size: 324 Bytes
c34c995 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
//
// SPDX-FileCopyrightText: Hadad <[email protected]>
// SPDX-License-Identifier: Apache-2.0
//
import path from 'path';
import config from '../../config.js';
export const setupViewEngine = (app, rootDir) => {
app.set('view engine', 'ejs');
app.set('views', path.join(
rootDir,
config.paths.views
));
}; |