博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【vue】vue.config.js
阅读量:5069 次
发布时间:2019-06-12

本文共 870 字,大约阅读时间需要 2 分钟。

const goods = require('./data/goods.json');
const ratings = require('./data/ratings.json');
const seller = require('./data/seller.json');
module.exports = {
publicPath: './', //输出的根路径 默认是/ 如果你的网站是app.com/vue 这更改此配置项
outputDir: 'dist',//构建输出目录
assetsDir: 'assets',//静态资源目录(js,css,img,fonts)
lintOnSave: false,//是否开启eslint保存检测,有效值:ture||false||'error'
devServer: {
open: true, //开启浏览器
host: 'localhost',
port: 8081,
https: false,
hotOnly: false,
proxy: {//配置跨域
'/api': {
target: "http//localhost:5000/api/",
ws: true,//是否跨域
changOrigin: true,//配置跨域
pathRewrite: {//重定向
'^/api': ''
}
}
},
before(app) {// http://localhost:8081/api/goods
app.get('/api/goods',(req,res) => {
res.json(goods);
})
app.get('/api/ratings',(req,res) => {
res.json(ratings);
})
app.get('/api/seller',(req,res) => {
res.json(seller);
})
}
}
}

转载于:https://www.cnblogs.com/kevinmajesty/p/10648062.html

你可能感兴趣的文章
spring框架学习笔记(八)
查看>>
JS取得绝对路径
查看>>
排球积分程序(三)——模型类的设计
查看>>
python numpy sum函数用法
查看>>
Linux中的SELinux详解--16
查看>>
php变量什么情况下加大括号{}
查看>>
less入门
查看>>
如何实现手游app瘦身?
查看>>
linux程序设计---序
查看>>
【字符串入门专题1】hdu3613 【一个悲伤的exkmp】
查看>>
C# Linq获取两个List或数组的差集交集
查看>>
21.Longest Palindromic Substring(最长回文子串)
查看>>
HDU 4635 Strongly connected
查看>>
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
Java处理多人同时读写文件的文件锁处理
查看>>
设计模式IOS篇-第二章:委托模式
查看>>
beego——日志处理
查看>>
【连载】 FPGA Verilog HDL 系列实例--------十进制加减法计数器
查看>>
MySQL中MyISAM与InnoDB区别及选择
查看>>