Go to file
Ukolov Konstantin 6eafd97557 feat: init commit 2024-05-23 11:59:03 +03:00
.husky feat: init commit 2024-05-23 11:59:03 +03:00
plugins feat: init commit 2024-05-23 11:59:03 +03:00
public feat: init commit 2024-05-23 11:59:03 +03:00
server feat: init commit 2024-05-23 11:59:03 +03:00
src/entities/product feat: init commit 2024-05-23 11:59:03 +03:00
.gitignore feat: init commit 2024-05-23 11:59:03 +03:00
.npmrc feat: init commit 2024-05-23 11:59:03 +03:00
README.md feat: init commit 2024-05-23 11:59:03 +03:00
app.config.ts feat: init commit 2024-05-23 11:59:03 +03:00
app.vue feat: init commit 2024-05-23 11:59:03 +03:00
eslint.config.mjs feat: init commit 2024-05-23 11:59:03 +03:00
nuxt.config.ts feat: init commit 2024-05-23 11:59:03 +03:00
package.json feat: init commit 2024-05-23 11:59:03 +03:00
pnpm-lock.yaml feat: init commit 2024-05-23 11:59:03 +03:00
tsconfig.json feat: init commit 2024-05-23 11:59:03 +03:00

README.md

Nuxt UI Minimal Starter

Look at Nuxt docs and Nuxt UI docs to learn more.

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.