# vue 로컬 테스트시
npm run serve
# webpack 설정으로 https, http2 기능을 사용해 띄울 수 있다.
# https://webpack.js.org/configuration/dev-server/#devserverhttps
# https://webpack.js.org/configuration/dev-server/#devserverhttp2
# http2 는 node 버전 10 부터 사용할 수 없고, express framework 에서 쓸 수 있다.
# vue.config.js 에 설정하면
module.exports = {
//...
devServer: {
http2: true,
https: true,
# http2, https 로 테스트 할 수 있다.
App running at:
- Local: https://localhost:8080/
comments:
댓글 쓰기