mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 12:32:31 +01:00
56b658cc96
(cherry picked from commit 37501094d7256e4dbe13de33b392933f6d475553)
25 lines
534 B
JavaScript
25 lines
534 B
JavaScript
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/`,
|
|
robots: `${root}/Content/robots.txt`,
|
|
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;
|