英文:
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文档的说明,您可以:
- 通过设置
sencha.cfg
中的inspector.address
属性来更改默认地址。 - 使用
Sencha Cmd
的config
命令来设置服务器和端口:
sencha config --prop inspector.address=http://server:port/ \
then \
app watch --inspector
英文:
According to the documentation of Sencha Cmd you can:
- Change the default address in
sencha.cfg
by settinginspector.address
property. - Use the
config
command ofSencha Cmd
to set a server and port:
sencha config --prop inspector.address=http://server:port/ \
then \
app watch --inspector
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论