FlutterWebで作成したサイトをVercelにデプロイする
Vercelの設定
Vercelでのプロジェクトの作成とレポジトリのインポートはインポートは済んでいるものとします。
FRAMEWORK
はOther
を選択します。
また、ビルド設定は以下のように設定します。
# Build Command
flutter/bin/flutter build web --release
# Output Directory
build/web
# Install Command
if cd flutter; then git pull && cd .. ; else git clone https://github.com/flutter/flutter.git; fi && ls && flutter/bin/flutter doctor && flutter/bin/flutter clean && flutter/bin/flutter config --enable-web
最終的には以下のようになります。
これでDeploy
ボタンを押すと無事にデプロイされます。