赞
踩
在项目根目录下的package.json文件里面的scripts里面的serve后面加上
--open
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
— 在根目录下,创建一个vue.config.js
module.exports = {
// 关闭eslint
lintOnSave:false
}
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
"exclude": ["node_modules", "dist"]
}
注意:
每设置一项建议重启一下项目,这样可以检测项目有没有出现问题,配置有没有成功
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。