From 3e657874d7c93b53e381be165f4a06e299cbab0c Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Tue, 18 Jun 2024 13:59:57 +0200 Subject: [PATCH] :bug: Create resources/public/css/ on run-devenv --- frontend/scripts/watch.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/scripts/watch.js b/frontend/scripts/watch.js index bdbe537208..f2c6b376cb 100644 --- a/frontend/scripts/watch.js +++ b/frontend/scripts/watch.js @@ -35,6 +35,7 @@ async function compileSass(path) { log.info("done:", `(${ppt(end)})`); } +await fs.mkdir("./resources/public/css/", { recursive: true }); await compileSassAll(); await h.copyAssets() await h.compileSvgSprites()