mirror of
https://github.com/koajs/examples.git
synced 2026-01-18 14:38:19 +00:00
15 lines
250 B
JavaScript
15 lines
250 B
JavaScript
|
|
/**
|
|
* Module dependencies.
|
|
*/
|
|
|
|
const views = require('koa-views');
|
|
const path = require('path');
|
|
|
|
// setup views mapping .html
|
|
// to the swig template engine
|
|
|
|
module.exports = views(path.join(__dirname, '/../views'), {
|
|
map: { html: 'swig' }
|
|
});
|