Fix build/run errors: add missing dependencies on windows 11, add prune (clean build) script, add "start-dev" script with increased verbosity, configure output for webpack, configure basic file-based logging, fix control's export

This commit is contained in:
sayhiben
2024-08-10 22:02:05 -07:00
parent db7338bcf3
commit a3ac672769
6 changed files with 75 additions and 5 deletions

View File

@@ -118,6 +118,13 @@ const webConfig = {
patterns: [{ from: 'src/web/*.ejs', to: '[name].ejs' }],
}),
],
stats: {
colors: true,
modules: true,
reasons: true,
errorDetails: true,
warnings: true,
}
}
module.exports = [nodeConfig, browserConfig, webConfig]