15 lines
352 B
TypeScript
15 lines
352 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli'
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.tphai.companion',
|
|
appName: '随身助手',
|
|
webDir: '../backend/static',
|
|
server: {
|
|
// 生产打包前改为后端地址;开发时注释掉用本地
|
|
url: 'http://121.40.164.32:16080',
|
|
cleartext: true,
|
|
},
|
|
}
|
|
|
|
export default config
|