8 lines
113 B
JavaScript
8 lines
113 B
JavaScript
// vue.config.js
|
|
module.exports = {
|
|
lintOnSave:false, //关闭eslint检查
|
|
devServer:{
|
|
open: true,
|
|
}
|
|
}
|