How can we run superset-frontend on different host, other than localhost? #12711
Unanswered
hyouinKyouma
asked this question in
Q&A / Help
Replies: 2 comments 1 reply
-
Turns out if we edit the webpack.config.js file and add an additional parameter for for host by passing devserverHost = '0.0.0.0' and then replacing the 'localhost' with ${devserverHost} solves the problem, additionally this also has to be done for the webpack.proxy.config.js file |
Beta Was this translation helpful? Give feedback.
0 replies
-
It is not recommended to run the dev-server in public cloud. You can always run the backend on the cloud, and use |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So I am trying to run superset in dev mode on cloud for which I need to run superset-frontend via
npm run dev-server
but this starts the server on localhost, however on cloud I would like to specify the host and port for superset-frontend,I tried editing the webpack.config.js and webpack.proxy.config.js but the server still starts on localhost.
What can be done in this case to pass the new host for superset-frontend?
Beta Was this translation helpful? Give feedback.
All reactions