修改template/data中的protocol,带上冒号
This commit is contained in:
parent
9cec1dadcf
commit
062e2b0f11
|
|
@ -92,7 +92,7 @@ export const system: System[] = [
|
|||
zone: 'z0',
|
||||
name: '',
|
||||
domain: '',
|
||||
protocol: 'http',
|
||||
protocol: 'http:',
|
||||
},
|
||||
],
|
||||
defaultBucket: '',
|
||||
|
|
@ -151,7 +151,7 @@ export const system: System[] = [
|
|||
export const domain: Domain[] = [
|
||||
{
|
||||
id: DEV_DOMAIN_ID,
|
||||
protocol: 'http',
|
||||
protocol: 'http:',
|
||||
url: 'localhost',
|
||||
port: 3001,
|
||||
systemId: DEV_SYSTEM_ID,
|
||||
|
|
@ -161,7 +161,7 @@ export const domain: Domain[] = [
|
|||
* 线上真实域名,此信息必须在应用启动前初始化,否则系统无法访问
|
||||
* */
|
||||
id: SUPER_DOMAIN_ID,
|
||||
protocol: 'https',
|
||||
protocol: 'https:',
|
||||
url: 'test.com',
|
||||
port: 443,
|
||||
apiPath: '/rest/aspect',
|
||||
|
|
|
|||
Loading…
Reference in New Issue