I have a VUE application and I need to run it on an external link not on localhost.
I tried to create a
vue.config.js
devServer: {
host: 'http://my-testing-web-address.com',
port: 8080,
...
}
and set the devserver, but still no changes
when I run
npm run serve
It says
App running at:
- Local: http://localhost:8080/
- Network: http://192.168.0.100:8080
It's any way to set up an external devserver?
npm run build
? – Echo