jumbo michael
jumbo michael

Reputation: 57

How to host Flutter Webapp on a Subdomain?

Wanted to know the right step to hosting a flutter webapp on a subdomain. Purchased a domain on GoDaddy, wanted to host it on a subdomain: web._____.com

Also what's the best place to host the same when deploying on subdomain

Upvotes: 1

Views: 1077

Answers (1)

Kolumbán Attila
Kolumbán Attila

Reputation: 66

Step 1:

flutter build web --web-renderer html --release

Step 2: yourproject/build/web -- create a zip file from web folder content

Step 3: upload and extract on your subdomain folder.

Upvotes: 1

Related Questions