Skip to content

Instantly share code, notes, and snippets.

@jungbin-kim
Created December 17, 2019 11:09
Show Gist options
  • Save jungbin-kim/f04485075641b140210eefa33055a90d to your computer and use it in GitHub Desktop.
Save jungbin-kim/f04485075641b140210eefa33055a90d to your computer and use it in GitHub Desktop.
webpack dev server https 설정

크롬: 연결이 비공개로 설정되어 있지 않습니다

  devServer: {
    https: {
      key: fs.readFileSync('*.key path'),
      cert: fs.readFileSync('*.pem path'),
      passphrase: 'password'
    }
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment