fix(core): Update dependencies and improve build configurations

This commit is contained in:
2024-09-27 23:12:02 +02:00
parent 2f80abafc2
commit 27ee8195e8
8 changed files with 113 additions and 111 deletions

View File

@ -3,10 +3,10 @@ import * as paths from './ffb.paths.js';
export const runCli = async () => {
const serviceQenv = new plugins.qenv.Qenv('./', './.nogit', false);
const websiteServer = new plugins.loleWebsiteserver.LoleWebsiteServer({
const websiteServer = new plugins.typedserver.utilityservers.UtilityWebsiteServer({
feedMetadata: null,
domain: '{{module.projectDomain}}',
serveDir: paths.distWebDir
serveDir: paths.distWebDir,
});
await websiteServer.start();
};