新增ip访问

This commit is contained in:
tianfeng 2025-08-15 16:24:48 +08:00
parent 70403cc450
commit f35b03a41a
6 changed files with 34 additions and 15 deletions

2
.env
View File

@ -1,4 +1,2 @@
# 默认环境(开发环境)
VITE_NODE_ENV=development
VITE_API_BASE_URL=https://dev-api.likeichat.com
VITE_APP_TITLE=Likei H5 (Development)

View File

@ -1,4 +1,4 @@
# 开发环境
VITE_NODE_ENV=development
VITE_API_BASE_URL=https://dev-api.likeichat.com
VITE_API_BASE_URL=https://api.likeichat.com
VITE_APP_TITLE=Likei H5 (Development)

View File

@ -7,9 +7,9 @@
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite --mode development",
"dev:test": "vite --mode test",
"dev:prod": "vite --mode production",
"dev": "vite --mode development --host",
"dev:test": "vite --mode test --host",
"dev:prod": "vite --mode production --host",
"build": "vite build --mode production",
"build:dev": "vite build --mode development",
"build:test": "vite build --mode test",

View File

@ -55,7 +55,7 @@ export function connectApplication(renderFun) {
// 开发环境可以提供模拟数据
if (process.env.NODE_ENV === 'development') {
const mockAccess = JSON.stringify({
'Authorization': 'Bearer F77126B08E13987C3AD88B6015C5B777.djIlM0ExOTU0MDU5NzkzOTYzMzkzMDI1JTNBTElLRUklM0ExNzU3NzYzODU5NzE1JTNBMTc1NTE3MTg1OTcxNQ==',
'Authorization': 'Bearer 55C3DED3F67A0B6CE45E8FDBDF59BFAE.djIlM0ExOTU0MDU5NzkzOTYzMzkzMDI1JTNBTElLRUklM0ExNzU3ODM1MTY1MzQwJTNBMTc1NTI0MzE2NTM0MA==',
'Req-Lang': 'en',
'Req-App-Intel': 'build=1.0;version=2.1;channel=official;Req-Imei=mock-imei',
'Req-Sys-Origin': 'origin=LIKEI;originChild=LIKEI'

View File

@ -13,7 +13,7 @@ if (DEBUG_MODE) {
// 默认公共请求头配置
let COMMON_HEADERS = {
'authorization': 'Bearer F77126B08E13987C3AD88B6015C5B777.djIlM0ExOTU0MDU5NzkzOTYzMzkzMDI1JTNBTElLRUklM0ExNzU3NzYzODU5NzE1JTNBMTc1NTE3MTg1OTcxNQ==',
'authorization': 'Bearer 55C3DED3F67A0B6CE45E8FDBDF59BFAE.djIlM0ExOTU0MDU5NzkzOTYzMzkzMDI1JTNBTElLRUklM0ExNzU3ODM1MTY1MzQwJTNBMTc1NTI0MzE2NTM0MA==',
'req-app-intel': 'version=1.0.0;build=1;model=SM-G9550;sysVersion=9;channel=Google',
'req-client': 'Android',
'req-imei': '8fa54d728ab449e04f9292329ed44bda',
@ -41,34 +41,34 @@ export function updateCommonHeaders(headers) {
*/
export function setHeadersFromApp(headerInfo) {
const updatedHeaders = {}
// 设置Authorization
if (headerInfo.authorization) {
updatedHeaders.authorization = headerInfo.authorization
}
// 设置语言
if (headerInfo.reqLang) {
updatedHeaders['req-lang'] = headerInfo.reqLang
}
// 设置APP信息
if (headerInfo.appVersion || headerInfo.buildVersion || headerInfo.appChannel) {
const appIntelParts = []
if (headerInfo.appVersion) appIntelParts.push(`version=${headerInfo.appVersion}`)
if (headerInfo.buildVersion) appIntelParts.push(`build=${headerInfo.buildVersion}`)
if (headerInfo.appChannel) appIntelParts.push(`channel=${headerInfo.appChannel}`)
if (appIntelParts.length > 0) {
updatedHeaders['req-app-intel'] = appIntelParts.join(';')
}
}
// 设置设备信息
if (headerInfo.reqImei) {
updatedHeaders['req-imei'] = headerInfo.reqImei
}
// 设置系统来源
if (headerInfo.sysOrigin) {
const sysOriginParts = [`origin=${headerInfo.sysOrigin}`]
@ -77,7 +77,7 @@ export function setHeadersFromApp(headerInfo) {
}
updatedHeaders['req-sys-origin'] = sysOriginParts.join(';')
}
updateCommonHeaders(updatedHeaders)
}

View File

@ -15,4 +15,25 @@ export default defineConfig({
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
server: {
host: '0.0.0.0', // 允许外部访问
port: 5173, // 指定端口
strictPort: true, // 端口被占用时不会自动选择下一个可用端口
open: false, // 不自动打开浏览器
cors: true, // 启用CORS
// 代理配置(如果需要)
proxy: {
// '/api': {
// target: 'http://localhost:3000',
// changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, '')
// }
}
},
preview: {
host: '0.0.0.0', // 预览模式也允许外部访问
port: 4173,
strictPort: true,
open: false
}
})