티스토리 뷰
서버가 시작된 상태에서 상태값이 변경되었을 시 확인할 수 있음.
서버를 껏다 켰다 하지 않아도 됨
webpack.config.js
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
entry: {
app: './src/index.js',
- print: './src/print.js',
},
devtool: 'inline-source-map',
devServer: {
contentBase: './dist',
+ hot: true,
},
plugins: [
// new CleanWebpackPlugin(['dist/*']) for < v2 versions of CleanWebpackPlugin
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
title: 'Hot Module Replacement',
}),
],
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist'),
},
};
index.js
import _ from 'lodash';
import printMe from './print.js';
function component() {
const element = document.createElement('div');
const btn = document.createElement('button');
element.innerHTML = _.join(['Hello', 'webpack'], ' ');
btn.innerHTML = 'Click me and check the console!';
btn.onclick = printMe;
element.appendChild(btn);
return element;
}
document.body.appendChild(component());
+
+ if (module.hot) {
+ module.hot.accept('./print.js', function() {
+ console.log('Accepting the updated printMe module!');
+ printMe();
+ })
+ }
'[웹] > WebPack' 카테고리의 다른 글
[WebPack] 캐싱 (0) | 2019.11.29 |
---|---|
[WebPack] 코드분할 방법 (0) | 2019.11.29 |
[WebPack] webpack-dev-server 서버 구축 (Step5) (0) | 2019.11.27 |
[WebPack] HtmlWebpackPlugin (Step4) (0) | 2019.11.27 |
[WebPack] 자산관리 Asset (Step3) CSS, IMG, FONT, DATA (0) | 2019.11.27 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크