I am working on a VUE application and I am trying to run it on an external link instead of localhost.
I attempted to configure a
vue.config.js
devServer: {
host: 'http://my-testing-web-address.com',
port: 8080,
...
}
and adjusted the devserver settings, but unfortunately, there were no changes reflected.
When I execute
npm run serve
It displays the following message:
App running at:
- Local: http://localhost:8080/
- Network: http://192.168.0.100:8080
Is there a way to properly configure an external devserver for this VUE application?