Go to file
user-penguin f6d7bb7b5e
continuous-integration/drone/push Build is passing Details
ssr false
2024-08-24 19:21:25 +07:00
pages feat: add product page 2024-08-05 10:32:22 +03:00
plugins feat: orval generate 2024-07-31 10:38:59 +03:00
public init commit 2024-07-30 10:41:22 +03:00
server init commit 2024-07-30 10:41:22 +03:00
src feat: add breadcrumbs 2024-08-06 10:47:36 +03:00
.drone.yml add drone 2024-08-24 17:43:19 +07:00
.gitignore init commit 2024-07-30 10:41:22 +03:00
.npmrc init commit 2024-07-30 10:41:22 +03:00
README.md init commit 2024-07-30 10:41:22 +03:00
app.config.ts feat: add footer and header 2024-08-05 12:30:18 +03:00
app.vue feat: add footer and header 2024-08-05 12:30:18 +03:00
cakes.json build: add orval config 2024-07-31 10:33:45 +03:00
eslint.config.js build: rebuild eslint 2024-07-30 11:49:40 +03:00
nuxt.config.ts ssr false 2024-08-24 19:21:25 +07:00
orval.config.ts feat: add server data for catalog 2024-07-31 12:40:02 +03:00
package.json feat: add axios 2024-07-31 10:53:01 +03:00
pnpm-lock.yaml feat: add axios 2024-07-31 10:53:01 +03:00
tsconfig.json init commit 2024-07-30 10:41:22 +03:00
uno.config.ts feat: orval generate 2024-07-31 10:38:59 +03:00
yarn.lock ssr false 2024-08-24 19:21:25 +07: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.