Seeking a compact project involving Nuxt JS
with the intention of utilizing cloudflare for my domain. However, upon enabling cloudflare, I am unable to access my development platform as cloudflare does not permit port number 8000.
Currently, in order to view my nuxt app, I must use mydomain.com:8000
. Is there a method to access my website without having to specify the port 8000
? Here is my configuration file:
server: {
port: 8000, // default: 3000
host: '0.0.0.0' // default: localhost
},