Skip to content

Commit

Permalink
Use http to connect to backend in development
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgrady committed Feb 4, 2021
1 parent 6d1f9d6 commit dacf2e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Backend/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"Key": "Value",
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:5001;http://localhost:5000"
"applicationUrl": "http://localhost:5000"
}
}
}
2 changes: 1 addition & 1 deletion src/types/runtimeConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ declare global {
}

const defaultConfig: RuntimeConfigItems = {
baseUrl: "https://localhost:5001",
baseUrl: "http://localhost:5000",
captchaRequired: true,
captchaSiteKey: "6Le6BL0UAAAAAMjSs1nINeB5hqDZ4m3mMg3k67x3",
};
Expand Down

0 comments on commit dacf2e4

Please sign in to comment.