DEV Community

Discussion on: Mixing nuxt generate and build

Collapse
 
dreaminder profile image
DreaMinder

You mean /dashboard static-routes are getting generated and you want them to be spa-only?
You could use this command to avoid generating any routes except the ones you specified in nuxt.config:
nuxt build && nuxt generate --no-build
instead of nuxt generate

Collapse
 
flozero profile image
florent giraud

Ok i get it ! I dont want my dashboard to be full SPA. in some page i want to be sure that back request working and the client non see them so it's a nuxt build && nuxt generate in my case