Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 942 Bytes

README.md

File metadata and controls

56 lines (38 loc) · 942 Bytes

源Chat 网页交互应用

English / 简体中文

部署

请先确保已安装Node.js ( >=18 ).

1. 安装依赖

npm install

2. 编译代码

npm run build

本地开发

本地开发IDE推荐设置

VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).

1. 安装依赖

npm install

2. 配置 vite.config.js

server: {
    proxy: {
      '/api': {
        target: 'http://127.0.0.1:5050', // 将此处修改为你的后台服务地址
        secure: false,
        changeOrigin: true,
        rewrite: (path) => path.replace(/^\/api/, '')
      }
    }
  }

3. 启动本地服务

npm run dev