Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 보조정렬
- Spring
- SSL
- window
- Sqoop
- GIT
- NPM
- IntelliJ
- SQL
- tomcat
- Java
- MSSQL
- plugin
- xPlatform
- R
- Kotlin
- Express
- SPC
- hadoop
- vaadin
- table
- JavaScript
- es6
- Eclipse
- mapreduce
- 공정능력
- Python
- react
- Android
- mybatis
Archives
- Today
- Total
DBILITY
react localhost secure http test environment configuration 본문
front-end & ui/react
react localhost secure http test environment configuration
DBILITY 2022. 1. 26. 11:03반응형
OpenSSL설치
http://slproweb.com/products/Win32OpenSSL.html
cert생성
PS C:\Dev64\workspace\project> openssl req -x509 -newkey rsa:2048 -keyout keytmp.pem -out cert.pem -days 365
PS C:\Dev64\workspace\project> openssl rsa -in keytmp.pem -out key.pem
package.json ( react 17.0.2 )
"scripts": {
"start": "set HTTPS=true&&set SSL_CRT_FILE=cert.pem&&set SSL_KEY_FILE=key.pem&&react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
반응형
'front-end & ui > react' 카테고리의 다른 글
react router v6 (0) | 2022.02.15 |
---|---|
react qrcode modern-react-qr-reader (0) | 2022.02.08 |
react qr-reader v17 (0) | 2022.01.23 |
react' must be in scope when using jsx react/react-in-jsx-scope react 17 (0) | 2022.01.06 |
react Context (0) | 2022.01.06 |
Comments