Skip to content

Commit

Permalink
fix cors
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed Jan 4, 2024
1 parent 82ce241 commit 6a5f97b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
.AllowAnyHeader());
options.AddPolicy(name: "production",
builder => builder.WithOrigins(
"https://api.vein.gallery",
"https://vein.gallery")
"https://api.vein-lang.org",
"https://gallery.vein-lang.org")
.AllowAnyHeader()
.AllowAnyMethod());
});
Expand Down
2 changes: 1 addition & 1 deletion src/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Auth0": {
"Audience": "https://vein.gallery",
"Audience": "https://gallery.vein-lang.org",
"Authority": "https://ivysola.us.auth0.com"
},
"PackageDeletionBehavior": "Unlist",
Expand Down

0 comments on commit 6a5f97b

Please sign in to comment.