supportsWebHosting method

bool supportsWebHosting()

Whether this project supports web hosting deployment.

Implementation

bool supportsWebHosting() {
  return config.template.isJasprApp ||
      (config.template.isFlutterApp && config.platforms.contains('web'));
}