vue修改favicon.ico

2019-12-03  本文已影响0人  凌康ACG

一、

favicon.ico图片放在src/assets/favicon.ico

二、

build/webpack.dev.conf.js

    // https://github.com/ampedandwired/html-webpack-plugin
    new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'index.html',
      inject: true,
      //图标
      favicon: path.resolve('src/assets/favicon.ico')
    }),

build/webpack.prod.conf.js

    // generate dist index.html with correct asset hash for caching.
    // you can customize output by editing /index.html
    // see https://github.com/ampedandwired/html-webpack-plugin
    new HtmlWebpackPlugin({
      filename: config.build.index,
      template: 'index.html',
      inject: true,
      //图标
      favicon: path.resolve('src/assets/favicon.ico'),
      minify: {
        removeComments: true,
        collapseWhitespace: true,
        removeAttributeQuotes: true
        // more options:
        // https://github.com/kangax/html-minifier#options-quick-reference
      },
      // necessary to consistently work with multiple chunks via CommonsChunkPlugin
      chunksSortMode: 'dependency'
    }),
上一篇 下一篇

猜你喜欢

热点阅读