buildWeb static method

Future<void> buildWeb(
  1. BPConfig config
)

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);
  }
}