2023-01-01から1年間の記事一覧
なぜかなと思って、ずっと別の方法で誤魔化していたが解決したので記。 現象 ダメなパターンは以下、a-cameraを使っている。 <html> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" /> </meta></meta></head></html>
Astroからaxiosやfetchやらで、RestAPIを呼ぼうとするとCORSの制限に引っかかる。 ローカルだとClientとServerをそれぞれポートを分けて立てたりするから。 仮に以下のようにするとする Astro => http://localhost:3000/ Server => http://localhost:8080/ap…
Git のプッシュでWriteが終わり、Total 6626 (delta 1700), reused 0 (delta 0), pack-reused 0と出たあとに止まってしまう。 ある程度大きなファイルがあるときは、以下のようにバッファを増やしてからpush する。 git config http.postBuffer 157M 大きす…