美文网首页
[Vue] build打包位置配置

[Vue] build打包位置配置

作者: 平仄_pingze | 来源:发表于2018-02-11 11:29 被阅读362次
    // /config/index.js
    module.exports = {
      build: {
        assetsRoot: path.resolve(__dirname, '../public'),
        assetsSubDirectory: 'static',
        assetsPublicPath: '/',
      }
    }
    
    • assetsRoot - build后文件存在的根目录绝对路径
    • assetsSubDirectory - 静态文件目录路径,相对于assetsRoot
    • assetsPublicPath - index.html中引用路径前缀。如值为"/abc/"时,index.html中js/css路径为"/abc/static/..."

    相关文章

      网友评论

          本文标题:[Vue] build打包位置配置

          本文链接:https://www.haomeiwen.com/subject/pvyktftx.html