Monterail internal project. We test backendless approach to build fully functional app without BE team. Look at the Nuxt 3 documentation to learn more.
We use asdf to set up the local machine faster, and install dependencies like node. example of asdf setup:
brew install asdf
asdf plugin-add nodejs
asdf installWe use Yarn v3.4.1. If you use another version of yarn type:
corepack enableMore details here.
Make sure to install the dependencies:
# yarn
yarn installStart the development server on http://localhost:3000
yarn devBuild the application for production:
yarn buildLocally preview production build:
yarn previewCheck out the deployment documentation for more information.