1 Star 0 Fork 0

Aquarius/vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
Aquarius 提交于 2023-07-10 00:06 . update
// 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'
// })
// ]
// }
// }
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/aquarius2715/vue.git
git@gitee.com:aquarius2715/vue.git
aquarius2715
vue
vue
master

搜索帮助