소개
게시글
질문&답변
2021.07.25
webpack 실행 도중 오류
const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin'); 요거 맨 위에 추가하고 new webpack.LoaderOptionsPlugin ({ debug : true }) 이거 대신 new LoaderOptionsPlugin ({ debug : true }) 이렇게 변경해주면 정상적으로 빌드되요!
- 0
- 2
- 569
질문&답변
2021.06.23
LandingPage.js .map(콜백함수)
메모 ::::: 반환하는 값이 객체인데 {}를 쓰면 이자체가 객체로 이해하기 때문에 ()로 감싸준다 (다른강의 보다가 알게되었습니다 설명이 이상해서 부족한 부분은 추가 설명으로 부탁드릴게요!)
- 0
- 1
- 189
질문&답변
2021.06.22
npm run dev 오류
제대로 scripts 명령어 지정해주셨는데도 그렇다면 npm update 하고 다시 실행하면 될거에요
- 0
- 3
- 3.8K
질문&답변
2021.06.22
안녕하세요 선생님
-------------------2번 종류 Warning: Updating a style property during rerender (background) when a conflicting property is set (backgroundPosition) can lead to styling bugs. To avoid this, don't mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values. 이 에러는 리렌더링 될때 값이 없어도 css 속성이 렌더링 되버려서 생기는 부분이에요 그래서 강사님께서 앞에 {MainMovieImage && 로 감싸주셨고 이렇게 했는데도 같은 에러가 발생하면 useState 초기화할때 useState(null) 이렇게 쓰면 해결되요
- 0
- 2
- 472
질문&답변
2021.06.22
bundle.js 내용이 index.js와 동일합니다
console.log( "문자열~~~"); 이 문장 자체가 js 트랜스퍼할 내용이 없어서 똑같은거에요 var name ="hans"; console.log(`안녕하세요우~~ ${name}`); 이런식으로 es6문법 쓰면 트랜스퍼 되서 나와요
- 0
- 4
- 567