문서의 이전 판입니다!
웹팩은 기본적으로 필요한 자원은 미리 로딩하는게 아니라 그 때 그 때 요청하자는 철학을 갖고 있습니다.
1. 단점:
2. 장점:
Bundler(번들)
묶음
import
export
webpack.config.js configuration
const path = require('path'); module.exports = { mode: "development", // 없으면 production entry:"./source/index.js", output:{ path: path.resolve(__dirname, "public"), // __dirname mean webpack.config.js가 위치한 위치 filename: 'index_Bundle.js' } }
실행1: npx webpack –config webpack.config.js or npx webpack –config webpack.config.prod.js
실행2: npx webpack (설정파일이 webpack.config.js일 경우 생략 가능)
1. Node.js 설치
2. npm init
3. npm install -D webpack webpack-cli // -D = –save-dev
4. npx webpack –entry source/index.js –output ./public/index_bundle.js
Loader을 이용하여 css bundle
npm install --save-dev style-loader css-loader
const path = require('path'); module.exports = { mode: "development", // 없으면 production entry:"./source/index.js", output:{ path: path.resolve(__dirname, "public"), // __dirname mean webpack.config.js가 위치한 위치 filename: 'index_Bundle.js' }, module:{ rules:[ { test:/\.css$/, use:[ 'css-loader' ] } ] } }