Fix cors path, ship v1

This commit is contained in:
Amarpreet Minhas 2019-10-26 12:22:14 -04:00
parent 38e7f62c15
commit c26ded1b69

View file

@ -53,7 +53,7 @@ func main() {
func Routes() *chi.Mux {
router := chi.NewRouter()
cors := cors.New(cors.Options{
AllowedOrigins: []string{"https//sudoscientist.com", "https://www.sudoscientist.com"},
AllowedOrigins: []string{"https://sudoscientist.com", "https://www.sudoscientist.com"},
AllowedMethods: []string{"GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"},
AllowedHeaders: []string{"Accept", "Authorization", "Content-Type", "X-CSRF-Token"},
AllowCredentials: true,