[ VanillaJS ] webpack5 - HtmlWebpackPlugin

bepyan·2022년 1월 23일
0

HtmlWebpackPlugin

html파일에 javascipt 번들을 자동으로 묶어주는 플러그인이다.


yarn add -D html-webpack-plugin

webpack.config.js

const HtmlWebpackPlugin = require("html-webpack-plugin");

module.exports = {
  //...
  plugins: [
    new HtmlWebpackPlugin({
      template: "public/index.html",
    }),
  ],
}

이제 HTML에서 script를 수동으로 추가할 필요가 없다 🎉




만약 여러 HTML을 만들고 싶다면?

webpack.config.js

const HTML_TEMPLATE = 'public/index.html';

entry: {
  home: "./client/pages/home.js",
  dummy: "./client/pages/dummy.js",
},
output: {
  path: path.resolve(__dirname, "dist"),
  filename: "[name].bundle.js",
},

//...

plugins: [
  new HtmlWebpackPlugin({
    template: HTML_TEMPLATE,
    filename: "home.html",
    chunks: ["home"],
  }),
  new HtmlWebpackPlugin({
    template: HTML_TEMPLATE,
    filename: "dummy.html",
    chunks: ["dummy"],
  }),
],
  • filename 명시를 안하면 index.html 파일로 추출이 된다.
  • chunks 어떤 js 번들을 script에 넣을지 결정한다.



✨ 실습

public/index.html에서 스크립코드를 없애자.

<!DOCTYPE html>
<html lang="ko">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Home</title>
  </head>

  <body>
    <div id="app"></div>
  </body>
</html>
yarn build

아래와 같이 빌드된 것을 볼 수 있다.

dist
   ㄴ home.bundle.js
   ㄴ index.html

빌드된 html 파일을 보면 script이 잘 추가된 것을 볼 수 있다.

<!DOCTYPE html>
<html lang="ko">
  <head>
    <!-- -->
    <script defer src="home.bundle.js"></script>
  </head>
  <!-- -->
</html>

참고로 defer는 script가 모두 로드된 후 해당 외부 스크립트가 실행됨을 명시한다.
그냥 맨 나중에 로드한다고 생각하자..

🎉🎉

profile
쿠키 공장 이전 중 🚛 쿠키 나누는 것을 좋아해요.

0개의 댓글