diff --git a/esbuild.config.js b/esbuild.config.js index 805b345..aa5fb52 100644 --- a/esbuild.config.js +++ b/esbuild.config.js @@ -179,6 +179,14 @@ if (!isDev) { console.error("Stack:"); console.error(err.stack); } + }).on("ready", () => { + try { + generateAssets(); + } catch (err) { + console.error("There is a problem when regenerating assets!"); + console.error("Stack:"); + console.error(err.stack); + } }); }