Currently I am working on an Aurelia app that is fully developed. In the dev environment, it is only serving http requests. Anyone could help me with adding https so can I can access the app through https?
Thank you
Angelo
Currently I am working on an Aurelia app that is fully developed. In the dev environment, it is only serving http requests. Anyone could help me with adding https so can I can access the app through https?
Thank you
Angelo
In the webpack.config.js file, add the https property:
devServer: {
... some other values...
https: true
... some other values...
},
With that, you should run
npm start
And you'll get your app running on https://localhost:8080
Regards.