mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
15 lines
232 B
JavaScript
15 lines
232 B
JavaScript
'use strict';
|
|
/**
|
|
* template config
|
|
* @type {Object}
|
|
*/
|
|
module.exports = {
|
|
type: 'ejs',
|
|
content_type: 'text/html',
|
|
file_ext: '.html',
|
|
file_depr: '_',
|
|
root_path: think.ROOT_PATH + '/view',
|
|
adapter: {
|
|
ejs: {}
|
|
}
|
|
}; |