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

https://github.com/davidmeirlevy/nuxt-layers

A list of great ready-to-use Nuxt.js layers
https://github.com/davidmeirlevy/nuxt-layers

hacktoberfest js nuxt nuxt-layers vue

Last synced: 2 months ago
JSON representation

A list of great ready-to-use Nuxt.js layers

Awesome Lists containing this project

README

        

# Nuxt Layers List

Go to website at: https://nuxt-layers-list.netlify.app/ .

Created by the template of [Docus](https://docus.dev).

## Setup

Install dependencies:

```bash
bun install
```

## Development

```bash
bun run dev
```

## Edge Side Rendering

Can be deployed to Vercel Functions, Netlify Functions, AWS, and most Node-compatible environments.

Look at all the available presets [here](https://v3.nuxtjs.org/guide/deploy/presets).

```bash
bun run build
```

## Static Generation

Use the `generate` command to build your application.

The HTML files will be generated in the .output/public directory and ready to be deployed to any static compatible hosting.

```bash
bun run generate
```

## Preview build

You might want to preview the result of your build locally, to do so, run the following command:

```bash
bun run preview
```

---

For a detailed explanation of how things work, check out [Docus](https://docus.dev).