From 9560bbb218a9c92b927551b5b4abece7e34a8b70 Mon Sep 17 00:00:00 2001 From: Ananth Bhaskararaman Date: Tue, 16 Jul 2024 01:57:24 +0530 Subject: [PATCH] fix: Build script should build and write outputs now --- web/build.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/build.js b/web/build.js index 8d6931d..ba4bb74 100644 --- a/web/build.js +++ b/web/build.js @@ -24,5 +24,6 @@ if (serve) { const { host, port } = await ctx.serve({ host: 'localhost', servedir: 'static' }) console.log(`Serving at http://${host}:${port}`) } else { + await ctx.rebuild() await ctx.dispose() }