├── php-api/ # 改造后的PHP接口层 ├── java-ad-service/ # 若依框架微服务(广告+VIP+分账) ├── uniapp-reader/ # UniApp前端项目 │ ├── pages/ # 各端页面 │ └──
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. // vue.config.js
  2. const path = require('path');
  3. module.exports = {
  4. devServer: {
  5. proxy: {
  6. // 统一代理配置
  7. '/': {
  8. target: 'http://localhost:8080',
  9. changeOrigin: true,
  10. logLevel: 'debug' // 添加调试日志
  11. }
  12. }
  13. }
  14. }