vue에 title의 작은 아이콘 추가

744 단어
webpack.prod.conf.js      :
    const path = require('path') ;       : 
new HtmlWebpackPlugin({ 
    filename: config.build.index, 
    template: 'index.html', 
    favicon: path.resolve('./favicon.ico'), 
    inject: true, 
}), 

webpack.prod.dev.js     :
    :const path = require('path') ;        : 
new HtmlWebpackPlugin({ 
    filename: 'index.html',
    template: 'index.html',
    favicon: path.resolve('./favicon.ico'), 
    inject: true, 
}), 

  
마지막으로 중요한 index.html의 코드 도입:


  
전재 대상:https://www.cnblogs.com/woniubushinide/p/10775759.html

좋은 웹페이지 즐겨찾기