일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- unity
- javascript
- server
- kakao
- 구글
- 해석
- it
- C
- centOS7
- H2O
- techEmpower
- C lanuage
- caddy
- NGINX
- error
- mariadb
- ubuntu
- 자바
- MySQL
- 개발
- Portfolio
- 프래그먼트
- 번역
- 컴퓨터과학총론
- php
- 안드로이드
- 한글
- android
- java
- 개발자
- Today
- Total
목록client/Vue (18)
개발모음집
Vuetify 1.3 에서 2.4로 업그레이드를 하는데 package.json에서 "vuetify": "^2.0.4"로 숫자를 바꿔준다고 해결이 되지 않았다. 아마 Vuetify가 2.0 버전이 되면서 sass 도입을 한 것 같은데, # npm install sass fibers --dev # npm i sass-loader # npm i node-sass 설치후 아래와 같이 코드를 수정해주면 된다. // v2.0 // src/plugins/vuetify.js import Vue from 'vue'; import Vuetify from 'vuetify/lib'; Vue.use(Vuetify); export default new Vuetify({ icons: { iconfont: 'mdi', }, }); ..
$ wget https://dl.eff.org/certbot-auto $ chmod a+x certbot-auto $ ./certbot-auto certonly --standalone 질문에 맞춰 대답해주고 도메인등록을 해주면 된다. Congratulations! 라는 안내가 나오면 도메인 발급은 받은 것! vue.config.js 파일 const fs = require('fs'); module.exports = { configureWebpack: { // other webpack options to merge in ... }, devServer: { // https 적용을 위한 코드 https: true, https: { key: fs.readFileSync('../../etc/letsencrypt/l..
1. freenom에 들어가서 원하는 도메인 주소를 적고, 검색 2. 원하는 도메인에 get it now! 버튼을 클릭하고 하단에 continue버튼을 눌러준다. 3. 도메인 적용하려는 server의 ip를 입력한다. 4.그리고 도메인을 이용하여 서버에 접속하려고 하니 "Invalid Host header" 라는 에러가 html페이지에 보여졌다. 찾아보니 dev로 빌드했을 때는 disablehostcheck를 true로 해줘야 했다. {root경로}/vue.config.js module.exports = { configureWebpack: { // other webpack options to merge in ... }, // devServer Options don't belong into `configu..
보호되어 있는 글입니다.
Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option. 컴퍼넌트를 import하였는데, 위와 같은 에러가 발생하였다. export default { components: { Home //임포트하려는 컴퍼넌트명 }, 위와 같이 태그내에 있는 컴퍼넌트 속성에 컴퍼넌트를 추가하지 않아서 발생하는 문제였다
보호되어 있는 글입니다.
보호되어 있는 글입니다.
web 브라우저 컨솔창에서 본 에러 cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/vuetify-loader/lib/loader.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/Home.vue?vue&type=script&lang=js&:2 Uncaught Error: Cannot find module 'Axios' at webpackMissingModule (cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/vuetify-loader/lib/loade..