Files
b2b/app/delivery/middleware/cors.go
2026-03-10 09:02:57 +01:00

19 lines
461 B
Go

package middleware
import "github.com/gofiber/fiber/v3"
// CORSMiddleware creates CORS middleware
func CORSMiddleware() fiber.Handler {
return func(c fiber.Ctx) error {
c.Set("Access-Control-Allow-Origin", "*")
c.Set("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS")
c.Set("Access-Control-Allow-Headers", "Content-Type, Authorization")
if c.Method() == "OPTIONS" {
return c.SendStatus(fiber.StatusOK)
}
return c.Next()
}
}