I solve this on server side. I thought there’s some easy soluction on Ionic.
Just to let here to help others:
I insert the rack-cors gem and use your default config. Works fine!
config.middleware.insert_before 0, Rack::Cors do
allow do
origins ‘’
resource '’, :headers => :any, :methods => [:get, :post, :options]
end
end