Reputation: 323
I'm using Nuxt3 to host my site. I want it to have a serverless architecture, that a schedule build for the static site generation, and deploy it on Azure Static Webapps/ Azure Storage.
In short, I'm looking for a way that the static site generation of nuxt3 and deployment to Azure blob storage/ static web app all happened on cloud, with a scheduler.
However, I'm not using Azure pipeline or Github for this project, is there a way to achieve this?
Thank you.
Upvotes: 0
Views: 385
Reputation: 3614
Deploy Static web app to Azure Developer Center
According to the above, there are only ways
AFIK, we can not create nextjs app in azure . but we can we can create and Deploy it azure Static web app
npm install nuxt
and
Create a new app with npm init nuxt-app our app name
Deploy Nuxt sites with universal rendering on Azure Static Web Apps .
npm run dev -- -o
In local:
git _App location_
is /
_Api location_
is .output/server`` _Output location_
is .output/public
.Upvotes: 0