A modern e-commerce application built with Nuxt 4.
This project provides a minimal, production-ready starting point for
online stores, supporting multiple locales, SEO, cart, checkout, and
product catalog features.
Install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun installStart the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run devBuild the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run buildPreview the production build locally:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run previewFor more details on Nuxt usage and deployment, check out the Nuxt documentation.