fix: set ID as default HTML title

This commit is contained in:
cha0s 2023-12-29 02:27:17 -06:00
parent 454c74993a
commit 472f120a5a

View File

@ -18,6 +18,7 @@ const {
} = process.env;
module.exports = async (env, argv, flecks) => {
const {id} = flecks.get('@flecks/core');
const {
devHost,
devPort,
@ -102,6 +103,7 @@ module.exports = async (env, argv, flecks) => {
styleFiles,
};
},
title: id,
...htmlTemplateConfig,
}));
});