설정하기 이미지 또는 아이콘 파일을 준비한 다음, header 태그에 다음 부분을 설정합니다. href 부분에 파일 경로를 입력합니다. <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″> <link rel=”icon” href=”<%= BASE_URL %>favicon.ico”> <link rel=”shortcut icon” href=”<%= BASE_URL %>logo.png”> <link rel=”apple-touch-icon” href=”<%= BASE_URL %>logo.png”> <title><%= htmlWebpackPlugin.options.title %></title> </head> rel="icon" 부분은 파비콘(favicon)을 설정합니다. 더보기…