* 사진이 많아서 키보드 넘버패드 왼쪽에 있는 'Page Up' 과 'Page Down'을 사용하여 보시면 편합니다!
[ 강의정보 ]
https://jeonghwan-kim.github.io/series/2019/12/09/frontend-dev-env-npm.html
[ Ref ]
https://webpack.js.org/concepts/
* webpack 4.0 -> webpack 5.0 migration
[ 저장소 ]
https://github.com/studyhackers/frontend
[ 특이사항 ]
1. node , npm 명령어 사용을 위해 윈도우키를 눌러 'powershell' 검색
Set-ExecutionPolicy Unrestricted
복붙하고 엔터!
잘 적용되었는지 확인하기 위해
Get-ExecutionPolicy
복붙하고 엔터치면 현재 상태가 나옵니다.
2. 강의는 맥으로 진행하지만 윈도우일 경우
open 명령어 -> start
ex) index.html 을 열려고 할 때
start index.html
(추가 기술)
3. webpack 4.0 vs webpack 5.0
a. --output => --output-path , -o
b. "scripts": { "build": "./node~..webpack" }
=> "scripts": { "build": "webpack" }
[ 오류 ]
Refused to execute script from 'http://127.0.0.1:5500/uwon/dist/main.js/' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
< 해결방법 >
'Programming | 오류&해결' 카테고리의 다른 글
[ 아파치 apache ] "The Requested operation has failed" 오류 해결법 (0) | 2023.07.16 |
---|---|
[ VSCode ] .html파일에서 php 하이라이트 방법 | 흰 글자 (34) | 2022.12.03 |
[ VSCode ] 경로복사 \ 대신 /로 바꾸는법 (0) | 2022.11.28 |
Git 연동부터 여러명이 함께하는 프로젝트까지 (0) | 2022.10.04 |
Laravel 설치 (0) | 2022.07.22 |