IonicをFirebaseでホスティングする
Angularをfirebaseでホスティングした記事はありましたが、Ionicの例はなく、試すまでできるかどうかわからなかったので投稿します。特に目新しい内容はありませんが、AungularでやるようにすればIonicでもできたということを伝えるための記事です。(firebas.jsonの書き換えは必要ではまりました)
まずプロジェクト作成
ionic start
その後、作成したフォルダに移動
ionic cordova build browser --prod --release
初期化
firebase init
hostingを選んで、プロジェクト選んで、SPAとして登録
プロジェクトのルートに設定ファイルがあるので編集
vi firebase.json
{
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
というのを下記のように変更する
{
"hosting": {
"public": "www",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
firebase deploy
でできました。
Author And Source
この問題について(IonicをFirebaseでホスティングする), 我々は、より多くの情報をここで見つけました https://qiita.com/kinuta_masaya/items/a514b8a79d2fd13cb72b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .