(c) 2023, All Rights Reserved.
Look at the Nuxt 3 documentation to learn more.
Make sure to install the dependencies: Pick one of the following depending on your package manager:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install
Start the development server on http://localhost:3000 - Development server won't work due to the way WebsSocketServer is Set Up - Skip to Production
# yarn
yarn dev
# npm
npm run dev
Build the application for production:
# yarn on linux
yarn build
# yarn on windows
yarn build:windows
# Or
# npm linux
npm run build
# npm windows
npm run build:windows
# yarn
yarn start
# npm
npm run start
You are basically done at this point. You can now deploy the .output
directory to your server.
# yarn
yarn preview
# npm
npm run preview
Check out the deployment documentation for more information.