Reputation: 57
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
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