We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a327f8a commit 0c42913Copy full SHA for 0c42913
1 file changed
packages/platform-web/src/config.ts
@@ -3,7 +3,7 @@ import { z } from 'zod';
3
export const WebPlatformConfigSchema = z.object({
4
name: z.string().min(1, 'Name is required'),
5
browserName: z.string().min(1, 'browserName is required'),
6
- appUrl: z.string().url('appUrl must be a valid URL'),
+ appUrl: z.string().url('appUrl must be a valid URL').default('http://localhost:8081'),
7
});
8
9
export type WebPlatformConfig = z.infer<typeof WebPlatformConfigSchema>;
0 commit comments