Using Shadcn-vue to create nuxt-layers for UIKit Web Perqara
Make sure to install the dependencies:
pnpm install
Then add the dependency to their extends
in nuxt.config.ts
:
defineNuxtConfig({
extends: ['../web-ui-kit']
})
Start the development server on http://localhost:3000
pnpm dev
Build the application for production:
pnpm build
Or statically generate it with:
pnpm generate
Locally preview production build:
pnpm preview
Checkout the deployment documentation for more information.