Nuxt offers us a variety of ways to build our project for production, such as server-rendered (Universal), static, or Single Page Application (SPA) mode. All of these offer different pros and cons, depending on the use case.
By default, our project is in server-rendered (Universal) mode and can be built for production by running the following command in the Terminal:
$ npm run build
We then get a dist folder inside the .nuxt folder within our project; this contains the built end result(s) of our application, which can be deployed to a hosting provider:
