0.0.12 • Published 3 months ago

@zoobzio/nuxt-foundation-layer v0.0.12

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

Nuxt Foundation Layer

nuxt-foundation-layer is a Nuxt foundation layer that provides a baseline configuration for Nuxt to allow developers to quickly start a fully-featured Nuxt projet.

Getting Started

To start building on top of the foundation layer, first install the layer in your Nuxt project:

# add as dev dependency
pnpm add -D @zoobzio/nuxt-foundation-layer

Then you will need to extend your Nuxt application using the nuxt.config file:

// nuxt.config.ts
export default defineNuxtConfig({
  extends: ["@zoobzio/nuxt-foundation-layer"],
});

You're done! Your Nuxt application now has access to all of the tools and components exposed through the foundation layer.

Tools

nuxt-foundation-layer aims to provide a complete developer toolset that is useful in any Nut project, including:

Documentation

Coming soon!

Development

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

# install deps
pnpm i

# run dev server
pnpm dev

Development on this project will use the example configuration in ~/.playground. Have fun!