hippie/gulp/config.js
2024-08-08 20:35:08 +02:00

25 lines
No EOL
444 B
JavaScript

const src = 'source/';
const dev = 'build/';
const dpl = 'deploy/';
const rep = 'reports/';
const config = {
src: src,
dev: dev,
dpl: dpl,
rep: rep,
demo: true,
//these are not used while demo: true is set
index: 'index.html',
templateData: src + 'templates/data.json',
frontendData: src + 'data/**/*.json',
hippie: {
brand: 'hippie',
titlePostfix: ' - HIPPIE',
pageBase: './'
}
};
module.exports = config;