😀
react + swaデプロイ失敗するようになった
なんか最近VueやReactでAzure Static Web App使って、最初にデプロイするときによく失敗するのでメモ書き。
環境
- React (+vite)
- Node16
- Azure Static Web App
問題
reactアプリを作って、リポジトリにプッシュしてswaでデプロイしようとすると、ビルド成果物の入れるフォルダが見つかりません的なことを言われている。
---End of Oryx build logs---
Try to validate location at: '/bin/staticsites/xxxxx-xxxx-xxxx-xxxx-xxxxxxxxx-swa-oryx/app'.
Oryx built the app folder but was unable to determine the location of the app artifacts. Please specify the app artifact location.
解決策
リポジトリの.github/workflows
にあるymlファイルを開いて、 build_and_deploy_job
のセクションにあるoutput_location
に"dist"
を指定する。
Discussion