Despite my best efforts scouring the internet for a solution, I have yet to find a method to resolve my issue. The problem lies with my nuxt.js SPA being blocked by my company firewall when accessed by other users at the designated host/port.
While serving content at this location has never been an issue before, using the NUXT library seems to have complicated matters due to the firewall restrictions.
To circumvent this obstacle, I am considering serving the nuxt build with another service, such as vue-cli-service or express.js, in the hopes that they might bypass the firewall. However, I'm unsure of how to accomplish this task.
If anyone could provide guidance on getting vue-cli-service or express.js to serve the nuxt build from the _nuxt folder (assuming that is where the build is located), it would be greatly appreciated.
Currently, when attempting to use "vue-cli-service serve," an error is triggered because it cannot locate the '/src/main.js' file, which is understandable given that nuxt employs a different file structure.