supportsWebHosting property
bool
get
supportsWebHosting
Whether this configuration produces a deployable web build for either Flutter web or any Jaspr template (static or client). Used by the orchestrator to gate hosting / build / deploy steps.
Implementation
bool get supportsWebHosting {
return template.isJasprApp ||
(template.isFlutterApp && platforms.contains('web'));
}