fix bundler script paths

This commit is contained in:
f0x 2022-06-08 23:00:02 +02:00
commit d191931932
3 changed files with 15 additions and 3 deletions

View file

@ -75,6 +75,10 @@ fs.readdirSync(path.join(__dirname, "./css")).forEach((file) => {
entryFiles.push(path.join(__dirname, "./css", file));
});
if (!fs.existsSync(out())){
fs.mkdirSync(out(), { recursive: true });
}
const server = budoExpress({
port: 8081,
host: "localhost",