码迷,mamicode.com
首页 > Web开发 > 详细

vuecli3.0 htmlWebpackPlugin 报 ReferenceError: BASE_URL is not defined 错误

时间:2019-11-27 19:30:09      阅读:1740      评论:0      收藏:0      [点我收藏+]

标签:locate   fine   nbsp   webpack   define   需要   option   dir   url   

<head>   

<link rel="icon" href="<%= BASE_URL %>favicon.ico"> // 这里BASE_URL报错

</head>

-------------------------------------------------

vue.config.js

config.plugins.push(
      new HtmlWebpackPlugin({
        template: ‘./public/index.html‘,
        inject: true,
        hash: new Date().getTime(),
        url: BASE_URL,  //需要这里传参
        minify: {
          removeComments: true,
          collapseWhitespace: true,
          removeAttributeQuotes: true
        },
        chunksSortMode: ‘manual‘
      })
    )
 
--------------------------------

<head>   

<link rel="icon" href="<%= htmlWebpackPlugin.options.url %>favicon.ico"> //改成这种就ok了

</head>

vuecli3.0 htmlWebpackPlugin 报 ReferenceError: BASE_URL is not defined 错误

标签:locate   fine   nbsp   webpack   define   需要   option   dir   url   

原文地址:https://www.cnblogs.com/ctb-web/p/11944467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!