1 Star 0 Fork 734

九哥哥/springboot-openai-chatgpt

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 907 Bytes
一键复制 编辑 原始数据 按行查看 历史
Chen927-cz 提交于 2024-06-11 13:58 +08:00 . 代码提交
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
// allowedHosts: [
// 'mj.ink', // 允许访问的域名地址,即花生壳内网穿透的地址
// '.mj.ink' // .是二级域名的通配符
// ],
compress: false,
port: 1889, // 访问端口
proxy: {
'/api': {
//本地服务接口地址
target: 'http://localhost:9872',
ws: true,
pathRewrite: {
'^/api': '/'
}
}
},
client: {
progress: true,
overlay: false,
},
},
chainWebpack: config => {
config.plugin('html').tap(args => {
args[0].title = '超级AI大脑';
return args;
})
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/jiugege1106/springboot-openai-chatgpt.git
git@gitee.com:jiugege1106/springboot-openai-chatgpt.git
jiugege1106
springboot-openai-chatgpt
springboot-openai-chatgpt
master

搜索帮助