hippie/gulp/config.js
Stephan Hagedorn 534115ff28 Modules and maintenance
- Update to modules
- Added ESLint configuration
- Tried to fix SASS but still no automatic reload
- Gulp not working anymore
2022-08-08 21:43:54 +02:00

25 lines
No EOL
443 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',
titlePrefix: ' - HIPPIE',
pageBase: './'
}
};
module.exports = config;