I am currently transferring a Nuxt 2 project over to Nuxt 3. The server I use has a fixed IP address on which the application runs.
In Nuxt 2 there were the following options in nuxt.config.js in which I could assign the appropriate IP address:
servers: {
host: process.env.NUXT_DAEMON_IP,
port: '3000' // optional
}
However, in Nuxt 3, this option is no longer supported.
Where and how can I store these options in Nuxt 3? Do I have to do this via the nitro options?