Make sure to install the dependencies:
pnpm install @poidet/nuxtThen add the dependency to their extends in nuxt.config.ts:
export default defineNuxtConfig({
extends: '@poidet/nuxt'
});Start the development server on http://localhost:3000
pnpm devBuild the application for production:
pnpm buildOr statically generate it with:
pnpm generateLocally preview production build:
pnpm previewCheckout the deployment documentation for more information.