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

https://github.com/byloth/nuxtplate

A @nuxt 4 template app based on @vitejs, @vuejs with TypeScript, Pinia and more.
https://github.com/byloth/nuxtplate

Last synced: 5 months ago
JSON representation

A @nuxt 4 template app based on @vitejs, @vuejs with TypeScript, Pinia and more.

Awesome Lists containing this project

README

          

# Byloth's Nuxtplate

A Nuxt.js 4 template app with TypeScript, Pinia, SASS and more.

## Configuration

Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install dependencies:

```bash
bun install
```

## Development Server

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

```bash
bun run dev
```

Lint the code using [ESLint](https://eslint.org/):

```bash
bun run lint
```

## Production

Build the application for production to be served as a Node.js server:

```bash
bun run build
```

Build the application from production to be served as a static site:

```bash
bun run generate
```

Locally preview production build on `http://localhost:3000`:

```bash
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.