赞
踩
"path"参数必须是字符串类型。收到未定义
我是因为打包修改了项目的打包路径,导致了这个错误
assetsPublicPath: 代表打包后,index.html里面引用资源的相对地址
assetsSubDirectory: 除了 index.html 之外的静态资源要存放的路径
我的解决方法是
vue2:
在config/index.js
assetsSubDirectory: ‘static’,
assetsPublicPath: ‘/’,
vue3中:
在vue.config.js
publicPath: ‘./’,
//构建时的输出目录
outputDir: ‘html’,
//放置静态资源的目录
assetsDir: ‘static’,
//html 的输出路径
indexPath: ‘index.html’,
我的解决方法是这样的,如果有更好的解决方法可以告诉我!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。