I have a Nuxt 3 application (3.0.0-rc.13) generating a static website, and have to deploy to two locations:
- Firebase hosting
- Amazon S3 bucket
Hosting on Firebase needs a baseUrl of /
, and Amazon needs a different baseUrl (/2223/
). This can be configured in nuxt config, however I cannot find an cli option to specify which config file to use.
I have tried these, but they just pick the default nuxt.config.ts
.
nuxt generate -c nuxt.config.amazon.ts
nuxt generate --config-file nuxt.config.amazon.ts
I found this issue that added support to it for Nuxt 2, but I cannot find anything about it for Nuxt 3. Am I missing something or is it just not supported at all?