0
0

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 3 years have passed since last update.

Nuxt.js(SSR)アプリをrender.comにデプロイする方法 (Freeプラン→Starterプラン)

0
Posted at

Nuxtアプリをrender.comにデプロイすることは非常に簡単です。

しかし、それは無料プランだけ。

無料プランから有料プランに移行する際にコマンドを変更しなければいけないことに気づかず、ちょっと手間をとってしまったので、解決策をシェアしておきます。

原因

以下のstartコマンドではダメでした。(無料プランならこれでOK)

npm run start

解決策

startコマンドを以下に変更する

npm run start -- --hostname 0.0.0.0

補足

buildコマンドはこちら

npm install && npm run build
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?