2
2

More than 1 year has passed since last update.

NuxtのaxiosでbaseURLの設定が反映されない原因について

Last updated at Posted at 2019-06-20

NuxtのaxiosでbaseURLの設定が反映されない原因について

以下の設定だとbaseURLは設定できません。

nuxt.config.js
  axios: {
    baseUrl: 'http://localhost:3000/api/v1' // 間違い
  }

正しくはbaseUrlではなくてbaseURLだからです。以下が正しい設定になります。

nuxt.config.js
  axios: {
    baseURL: 'http://localhost:3000/api/v1' // 正しい
  }

参考になれば幸いです。

終わりに

私は現在、Web3のサービスの開発をしています。詳しくはこちらの記事をご覧下さい。
無料でイーサリアムが当たる、Web3時代の寄付サイトを作った話

2
2
1

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
2
2