You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
24 lines
487 B
7 years ago
|
const root = './frontend/src/';
|
||
|
|
||
|
const paths = {
|
||
|
src: {
|
||
|
root,
|
||
|
html: root + '*.html',
|
||
|
scripts: root + '**/*.js',
|
||
|
content: root + 'Content/',
|
||
|
fonts: root + 'Content/Fonts/',
|
||
|
images: root + 'Content/Images/',
|
||
|
exclude: {
|
||
|
libs: `!${root}JsLibraries/**`
|
||
|
}
|
||
|
},
|
||
|
dest: {
|
||
|
root: './_output/UI/',
|
||
|
content: './_output/UI/Content/',
|
||
|
fonts: './_output/UI/Content/Fonts/',
|
||
|
images: './_output/UI/Content/Images/'
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = paths;
|