代码拉取完成,页面将自动刷新
// const WebpackBar = require('webpackbar')
// let progressPlugin = new WebpackBar({
// color: '#85d', // 默认green,进度条颜色支持HEX
// basic: false, // 默认true,启用一个简单的日志报告器
// profile: false // 默认false,启用探查器。
// })
module.exports = {
lintOnSave: false,
devServer: {
// mock数据模拟
before(app, server) {
app.get('/api/cartList', (req, res) => {
res.json({
result: [
{ id: 1, title: 'vue实战开发', price: 188, active: 'true', count: 2 },
{ id: 2, title: 'vue源码研究', price: 288, active: 'true', count: 1 }
]
})
})
},
proxy: {
'/api': {
target: {
target: 'https://www.baidu.com/',
changeOrigin: true,
pathRewrite: {
'^api': '/'
}
}
}
},
// configureWebpack() {
// return {
//
// plugins: [
//
// new WebpackBar({
// name: 'vue-bar'
// })
// ]
// }
// }
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。