1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

Fix target directory for favicon manifest files

This commit is contained in:
checktheroads
2020-07-04 15:00:03 -07:00
parent 47d77e3894
commit 912c75d0a9

View File

@@ -49,7 +49,7 @@ const generateFavicons = (config, appPath) => {
const callback = (err, response) => {
handleError(err);
writeFiles(`${appPath}/static/images/favicons`, response.images);
writeFiles(`${appPath}/static/ui`, response.files);
writeFiles(`${appPath}/static/images/favicons`, response.files);
writeHtml(htmlFile, JSON.stringify(response.html));
return;
};