赞
踩
index.html打开之后是空白是因为文件的资源路径不对,这个时候我们需要在根目录下创建一个vue.config.js:
在里面添加配置:
module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? './' : '/'
}
如果是3.3版本之下的,就把publicPath换成baseUrl
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。