On this page
웹팩을 이용해 파비콘 추가하기
수정하기
문서 생성 2021-08-14 21:05:20 최근 수정 2021-08-14 21:08:22
On this page
html-webpack-plugin
을 사용하면 된다.
npm i --save-dev html-webpack-plugin
const HtmlWebpackPlugin = require('html-webpack-plugin')module.exports - {...plugins: [new HtmlWebpackPlugin({template: './index.html',favicon: './favicon.ico', // favicon 경로 입력}),],...}
- 빌드 후 template 파일에 favicon이 추가된다.