wechatPublicConfig添加location
This commit is contained in:
parent
76d5a1891e
commit
b4097fbcf1
|
|
@ -35,7 +35,7 @@ export type WebConfig = {
|
||||||
};
|
};
|
||||||
passport?: Passport[];
|
passport?: Passport[];
|
||||||
location: {
|
location: {
|
||||||
protocol: 'http:' | 'https:';
|
protocol: 'http' | 'https';
|
||||||
host: string;
|
host: string;
|
||||||
port: string;
|
port: string;
|
||||||
}
|
}
|
||||||
|
|
@ -63,6 +63,11 @@ export type WechatPublicConfig = {
|
||||||
originalId: string; //原始id
|
originalId: string; //原始id
|
||||||
};
|
};
|
||||||
passport?: Passport[];
|
passport?: Passport[];
|
||||||
|
location: {
|
||||||
|
protocol: 'http' | 'https';
|
||||||
|
host: string;
|
||||||
|
port: string;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export type NativeConfig = {
|
export type NativeConfig = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue