1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【 React Native】ExpoでWebをビルドする際にルートのパスを設定したい

Posted at

概要

Expoというツールを使うと、React NativeでWebサイトのビルドを簡単に出来ます。
ビルドしたファイルを例えばhttps://example.com/samplebuildのような感じで、URLのパスのsampleBuild配下に配置したいという時もあるかと思います。今回はこのパスの設定の仕方をメモ書きします。

対応

ExpoのドキュメントのPublishing Websitesにパスを設定する方法が書いてあります。package.jsonhomepageの項目に設定すれば大丈夫です。ドキュメントに書いてある通り、以下のように設定します。

package.json
{
  "homepage": "/samplebuild"
}
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?