如何在使用Sencha应用程序监视时指定不同的域?

huangapple go评论68阅读模式
英文:

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

问题

有类似的东西吗?

sencha app watch --host=mydomain.app

众所周知,默认域是localhost:1841。我可以定义一个自定义端口,但无法定义自定义域。

在Sencha文档中,我没有找到相关的信息。有什么解决办法吗?我需要在自定义域上提供服务,以避免跨域CORS问题。

谢谢。

英文:

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

得分: 2

根据Sencha Cmd文档的说明,您可以:

  1. 通过设置 sencha.cfg 中的 inspector.address 属性来更改默认地址。
  2. 使用 Sencha Cmdconfig 命令来设置服务器和端口:
sencha config --prop inspector.address=http://server:port/ \
    then \
    app watch --inspector
英文:

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

huangapple
  • 本文由 发表于 2023年2月18日 11:19:55
  • 转载请务必保留本文链接:https://go.coder-hub.com/75490979.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定