Right now running the local development server does not allow for an external device (ie. a smartphone on the same network) to access the app and test it.
It needs to be tested after being deployed to the remote environment (Netlify) and this is not ideal.
We want to be able to:
[ ] Run the development server locally and be able to access the app from a smartphone / tablet that is in the same network to do the manual testing.
For extra context: I have already tried to expose the application to the network by adding a host and port on the nuxt entry on package.json, but I am afraid that since we are using the audio input from the browser, we need to serve this on an https connection.
Right now running the local development server does not allow for an external device (ie. a smartphone on the same network) to access the app and test it.
It needs to be tested after being deployed to the remote environment (Netlify) and this is not ideal.
We want to be able to:
For extra context: I have already tried to expose the application to the network by adding a
host
andport
on thenuxt
entry onpackage.json
, but I am afraid that since we are using the audio input from the browser, we need to serve this on anhttps
connection.