Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/serkodev/nuxt-monorepo

Using Nuxt Layers to build a complete monorepo architecture
https://github.com/serkodev/nuxt-monorepo

architecture monorepo nuxt nuxt-layers vue web

Last synced: about 2 months ago
JSON representation

Using Nuxt Layers to build a complete monorepo architecture

Awesome Lists containing this project

README

        

# Nuxt Monorepo Demo

This project demonstrates how to use [Nuxt Layers](https://nuxt.com/docs/getting-started/layers) to build a complete monorepo architecture. You can also browse different [branches](https://github.com/serkodev/nuxt-monorepo/branches) to understand various application scenarios.

Welcome to read this [blog post](https://serko.dev/post/nuxt-3-monorepo) to learn about the details of the entire architecture of this repo.

## Setup

```bash
pnpm install
```

## Development

```bash
# all packages
pnpm dev

# app only
pnpm app dev
```

## Production

```bash
# all packages
pnpm build

# app only
pnpm app build
```