-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ブラウザ版をデプロイ可能にする #1410
The head ref may contain hidden characters: "netlify\u3067\u30C7\u30D7\u30ED\u30A4\u3059\u308B"
ブラウザ版をデプロイ可能にする #1410
Conversation
✅ Deploy Preview for voicevox-browser-dev ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -4,6 +4,7 @@ | |||
<meta charset="utf-8" /> | |||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |||
<meta name="viewport" content="width=device-width,initial-scale=1.0" /> | |||
<meta name="robots" content="noindex,nofollow"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
あくまで今のところは開発版なので検索避けです。
将来本番デプロイして検索流入を許容する場合はここを省く必要があります。
const router = createRouter({ | ||
history: isElectron | ||
? createWebHashHistory(import.meta.env.BASE_URL) | ||
: createWebHistory(import.meta.env.BASE_URL), | ||
history: createWebHashHistory(import.meta.env.BASE_URL), | ||
routes, | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ページにアクセスする時のURLがどういう形になるかの指定です。
元のブラウザ版だと https://host/home
にアクセスを想定していて、変更後は https://host/index.html/#/home
へのアクセスを想定します。
シングルページアプリケーションの場合はindex.htmlしかできないので /home
のアクセスに失敗します。
それ用のリダイレクトやページを作成すればいいのですが、まあまだ本番でプロではないので一旦これでいいかなと思いました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTMです!
問題ないと思うのでマージします!! |
内容
の解決です。実際にNetlifyを経由してデプロイしています。
https://voicevox-browser-dev.netlify.app/#/home
今はサンプルでこのブランチをデプロイしていますが、後でmainブランチに変えるつもりです。
関連 Issue
fix #1409
スクリーンショット・動画など
その他