-
Is it possible to deploy Nuxt3 as static with I have the following yml
I get the following error Nuxt3 generates I can deploy nuxt3 with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
hi @SveinnB, I just set this up for a very simple Nuxt 3 project and it seems to be working well. The default output location for
Also, since I wanted to use node > 18 (default for Azure is currently v16) when building, I had to add this to my
|
Beta Was this translation helpful? Give feedback.
hi @SveinnB, I just set this up for a very simple Nuxt 3 project and it seems to be working well.
The default output location for
yarn generate
is.output/public
, notdist
, so unless you're reconfigured it it's probably wrong in your yaml file. This worked well for me:Also, since I wanted to use node > 18 (default for Azure is currently v16) when building, I had to add this to my
package.json
: