New gulp config file
This commit is contained in:
parent
003a115923
commit
731c19dd61
2 changed files with 73 additions and 93 deletions
24
gulp/config.js
Normal file
24
gulp/config.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue