Skip to content

Commit 0c42913

Browse files
committed
[Web]: Set default appUrl
1 parent a327f8a commit 0c42913

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/platform-web/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { z } from 'zod';
33
export const WebPlatformConfigSchema = z.object({
44
name: z.string().min(1, 'Name is required'),
55
browserName: z.string().min(1, 'browserName is required'),
6-
appUrl: z.string().url('appUrl must be a valid URL'),
6+
appUrl: z.string().url('appUrl must be a valid URL').default('http://localhost:8081'),
77
});
88

99
export type WebPlatformConfig = z.infer<typeof WebPlatformConfigSchema>;

0 commit comments

Comments
 (0)