Vue技术点整理-vue.config.js
2021-03-21 16:24
标签:hunk user 开发环境 col inf 代理 理解 https export 1,proxy代理解决本地开发环境跨域问题 配置proxy代理后,proxy会将任何未知请求 (没有匹配到静态文件的请求) 代理到 https://192.168.3.49:8080 vue.config.js配置 业务请求代码 2,vue-cli打包后,增加时间戳后缀名,避免缓存问题 Vue技术点整理-vue.config.js 标签:hunk user 开发环境 col inf 代理 理解 https export 原文地址:https://www.cnblogs.com/front-web/p/12721649.htmldevServer: {
proxy: {
‘/edu-api‘: {
target: `https://192.168.3.49:8080`,
changeOrigin: true,
}
}
}
axios.get("/edu-api/userList")
.then(response => {
console.info(response)
})
const Timestamp = new Date().getTime();
module.exports = {
configureWebpack: {
output: {
filename: `[name].${Timestamp}.js`,
chunkFilename: `[name].${Timestamp}.js`
}
}
}
下一篇:曾经在html中编写网页的时候
文章标题:Vue技术点整理-vue.config.js
文章链接:http://soscw.com/index.php/essay/67244.html