2019-01-01から1年間の記事一覧

Rails + webpacker + Vue.js + TypeScript で `export 'default' (imported as 'mod') was not found`

Rails で webpacker gem を使って、Vue.js with TypeScript な環境を作った中で長くハマった部分があったのでご紹介したい。 ハマったところ webpacker で vue と typescript を初期設定して、Vue.js の SFC (Single File Component) で開発していた。 webpa…

FirebaseでTwitterアカウント認証出来た

FirebaseでTwitterアカウント認証出来た Firebase Authentication で Twitter アカウントを使った認証を作れた。 まだ認証しか出来ないけど、そこまでにハマった点を残しておこうと思う。 用意するもの: Twitter Developer Apps 登録 Firebase Project Twit…

Firebase Functions ローカルで関数を実行する時に失敗する件について

Firebase Functionsは firebase-tools を使って、ローカルで関数を実行してテストできる。 結論 firebase functions:shell を使おう! 使い方はこちら firebase.google.com 例えば、 myFunc という関数を定義したら、 firebase > myFunc.get() とかで呼べる…