buildWeb static method
Builds for web
After the build process is completed, if not prevented
via the pubspec config, it will handle the web cache busting as well
Implementation
static Future<void> buildWeb(BPConfig config) async {
await _runBuildCommand(config, config.web!, "Web");
if (config.web!.webConfig!.addVersionQueryParam == true) {
await WebUtils.applyCacheBustPostBuild(config);
}
}