Look at the Nuxt 3 documentation to learn how to use nuxt. You should also possess initial knowledge of Vue.js.
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 previewYou can proxy local host through ngrok. Install ngrok and execute the following commands after starting a development or production server.
ngrok http 3000Check out the deployment documentation for more information.