From c24cdd854e258712408a7904bdb401c49e3f07c1 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 28 八月 2025 13:09:08 +0800
Subject: [PATCH] fix: 修改通道充值提示语
---
apps/taro/config/index.js | 11 ++++-------
1 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/apps/taro/config/index.js b/apps/taro/config/index.js
index 78c8ec0..83f8f71 100644
--- a/apps/taro/config/index.js
+++ b/apps/taro/config/index.js
@@ -5,6 +5,8 @@
import ComponentsPlugin from 'unplugin-vue-components/webpack';
import NutUIResolver from '@nutui/nutui-taro/dist/resolver';
+const rootPath = path.resolve(__dirname, '..', '..', '..');
+
const config = {
projectName: 'vue-mini',
date: '2022-11-29',
@@ -24,12 +26,7 @@
},
alias: {
'@': path.resolve(__dirname, '..', 'src'),
- '@life-payment/components': path.resolve(
- __dirname,
- '..',
- 'node_modules',
- '@life-payment/components'
- ),
+ '@life-payment/components': path.resolve(rootPath, 'packages', 'components'),
},
sourceRoot: 'src',
outputRoot: `dist/${process.env.TARO_ENV}`,
@@ -205,7 +202,7 @@
devServer: {
proxy: {
'/api': {
- target: 'http://localhost:57190', // 鐩爣鏈嶅姟鍣ㄥ湴鍧�
+ target: 'http://localhost:58190', // 鐩爣鏈嶅姟鍣ㄥ湴鍧�
changeOrigin: true,
},
},
--
Gitblit v1.9.1