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
- Host: GitHub
- URL: https://github.com/davidmeirlevy/nuxt-layers
- Owner: davidmeirlevy
- Created: 2023-09-28T14:08:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-11T09:20:54.000Z (over 1 year ago)
- Last Synced: 2025-02-08T06:12:00.874Z (4 months ago)
- Topics: hacktoberfest, js, nuxt, nuxt-layers, vue
- Language: TypeScript
- Homepage: https://nuxt-layers-list.netlify.app/
- Size: 170 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).