package.json
のscripts
, dev
に--experimental-https
を追記と開発時にHTTPSを使用できます。
package.json
"scripts": {
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint"
}
Go to list of users who liked
More than 1 year has passed since last update.
package.json
のscripts
, dev
に--experimental-https
を追記と開発時にHTTPSを使用できます。
"scripts": {
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint"
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked