Skip to content

Commit

Permalink
Default local dev server to ::
Browse files Browse the repository at this point in the history
  • Loading branch information
jspspike committed Aug 10, 2023
1 parent 94fed9d commit d9e62fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/wrangler/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export interface DevConfig {
/**
* IP address for the local dev server to listen on,
*
* @default `0.0.0.0`
* @default `::`
*/
ip: string;

Expand Down
2 changes: 1 addition & 1 deletion packages/wrangler/src/config/validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ function normalizeAndValidateDev(
rawDev: RawDevConfig
): DevConfig {
const {
ip = "0.0.0.0",
ip = "::",
port,
inspector_port,
local_protocol = "http",
Expand Down

0 comments on commit d9e62fb

Please sign in to comment.