Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tomoat/nuxt3-app

nuxt3 template
https://github.com/tomoat/nuxt3-app

Last synced: 6 days ago
JSON representation

nuxt3 template

Awesome Lists containing this project

README

        

# Nuxt 3 Minimal Starter

We recommend to look at the [documentation](https://v3.nuxtjs.org).

## Setup

```bash
npx nuxi init nuxt3-app
```

🎉 Another dandy Nuxt project just made! Next steps:

📁 `cd nuxt3-app`

💿 Install dependencies with `npm install` or `yarn install`

🚀 Start development server with `npm run dev` or `yarn dev`

Make sure to install the dependencies

```bash
pnpm install
```

## Development

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

```bash
pnpm dev
```

## Production

Build the application for production:

```bash
pnpm build
```

```bash
pnpm start
```

## Dependencies Update

If you want to update the libraries, I left a nice command for you. Select it with space and press enter.

```bash
pnpm up -i #yarn upgrade-interactive --latest
```

## Directory Structure

```
.
├── .git
├── .gitignore
├── .nuxt
├── README.md
├── app.vue
├── assets
├── components
├── composables
├── layouts
├── node_modules
├── nuxt.config.ts
├── package.json
├── pages
├── public
├── plugins
├── pnpm-lock.yaml
├── server
└── tsconfig.json
```

Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment).