The documentation says:
By default, the baseURL is set to '/'. However, the baseURL can be updated at runtime by setting the NUXT_APP_BASE_URL as an > environment variable. Then, you can access this new base URL using config.app.baseURL:
https://nuxt.com/docs/api/composables/use-runtime-config#appbaseurl
However, I'd like to rather set it within the runtimeConfig property in my nuxt.config.ts
runtimeConfig: {
public: {
site: {
appName: ...
description: ...
},
app: {
baseURL: ... //not working
}
}
},
How can I do that?