15 lines
283 B
JavaScript
15 lines
283 B
JavaScript
module.exports = config => {
|
|
config.setUseGitIgnore(false);
|
|
|
|
config.addPassthroughCopy('./src/images/');
|
|
|
|
return {
|
|
markdownTemplateEngine: 'njk',
|
|
dataTemplateEngine: 'njk',
|
|
htmlTemplateEngine: 'njk',
|
|
dir: {
|
|
input: 'src',
|
|
output: 'dist'
|
|
}
|
|
};
|
|
}; |