How to specify a different domain when using sencha app watch?

321 views Asked by At

Is there something like?

sencha app watch --host=mydomain.app

As we all know, the default domain is localhost:1841. I can define a custom port, but not a custom domain.

I haven't found anything related in the Sencha documentation. Any workaround? I need to serve on a custom domain to avoid cross domain CORS issues.

Thanks.

1

There are 1 answers

0
Peter Koltai On BEST ANSWER

According to the documentation of Sencha Cmd you can:

  1. Change the default address in sencha.cfg by setting inspector.address property.
  2. Use the config command of Sencha Cmd to set a server and port:
sencha config --prop inspector.address=http://server:port/ \
    then \
    app watch --inspector