18
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MacでSafariとChromeのCORSを無効化する

Last updated at Posted at 2020-07-07

この記事を参照している時点で「何かを間違えている」可能性が高いです。CORSを無効化するのは正しい方法ではありません。それでも緊急性があったり、手抜き開発をしたい有識者はご利用ください

良い子はマネしないでね

  • この状態でアクセスするのはlocalhostくらいにしておくこと
  • 他の方法(サーバの設定する、プロキシで解決する、JSONP使うhttps://cors-anywhere.herokuapp.com/を使用するブラウザの拡張機能を使用する)を採用すべき

SafariのCORSを無効化する

  1. 「Safari」 > 「環境設定」 > 「詳細」タブ > 「メニューバーに"開発"メニューを表示」を選択
  2. 「開発」 > 「クロスオリジンの制限を無効にする」にチェックを入れる

ChromeのCORSを無効化する

  1. Chromeを終了する
  2. ターミナルで下記のコマンドを叩く
open -n -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --user-data-dir=“/tmp/chrome_dev_test” --disable-web-security
18
15
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
18
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?