hippie/gulp/config.js

24 lines
371 B
JavaScript
Raw Normal View History

2021-03-08 22:10:41 +01:00
const src = 'source/';
const dest = 'build/';
const config = {
src: src,
dest: dest,
demo: true,
index: 'index.html',
templateData: src + 'templates/data.json',
frontendData: src + 'data/**/*.json',
hippie: {
brand: 'hippie',
titlePrefix: ' - HIPPIE',
pageBase: './',
jsFile: 'main',
jsonFile: 'db'
}
}
module.exports = config;