Bundler/Webpack
-
Webpack - 프로젝트 설정Bundler/Webpack 2021. 5. 30. 13:00
npm init -y npm i -D webpack webpack-cli webpack-dev-server@next webpack-dev-server는 webpack-cli 와 메이저 버전을 일치시켜야 하기 때문에 @next 추가 package.json 설정 // package.json { "name": "webpack-bundler", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "dev": "webpack-dev-server --mode development", // 개발용 서버 실행 "build": "webpack --mode production" // 빌드 }, "dependencies": { "webpack": ..