Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Latest commit

 

History

History
39 lines (27 loc) · 789 Bytes

usage.md

File metadata and controls

39 lines (27 loc) · 789 Bytes

Usage

Next.jsで開発しています。

Install dependencies

yarn install

ローカルでデバッグする

WebRTCはSSL通信でないと使えないため、オレオレ認証局を作成します。

# `./certificates`内にcrtファイルと.keyファイルを作成します。
# macで開発している場合、.keyファイルをキーチェンに入れるとブラウザで開いたときに警告がでません。(finderでkeyファイルを開いてください)
yarn certification

# SSL(https)でデバッグ
# URL: https://localhost:3000
yarn dev:ssl

# 通常デバッグ(カメラは使用できない)
# URL: http://localhost
yarn dev

静的ファイル出力

yarn export

Lint

yarn lint