Site axiom-team.fr
Look at the nuxt 3 documentation to learn more.
Setup
Make sure to install the dependencies:
pnpm install --shamefully-hoist
Development Server
Start the development server on http://localhost:3000
pnpm dev
Production
Build the application for production in ssr mode (should be served by node.js) :
pnpm run build
Build the application in static mode :
pnpm run generate
All the pages will be generated at this build time and accessible in .output/public/
Locally preview production build:
pnpm run preview
Checkout the deployment documentation for more information.