Hi. Im trying to deploy first ember app with api. My backend is ror with open api. Everytng works great in develop with
ember serve --proxy "http://192.168.0.165:9001"
but when i try switch to production
.ember-cli
{
"disableAnalytics": false,
"proxy":"http://192.168.0.165:9001",
"liveReload": true,
"watcher": "polling"
}
ember build
nginx
server {
listen 9000;
root /home/alice/ember/front/dist/;
}
my ember app works but dosnt see any data from api
what have i done wrong?