Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomoat/nuxt3-app
nuxt3 template
https://github.com/tomoat/nuxt3-app
Last synced: 6 days ago
JSON representation
nuxt3 template
- Host: GitHub
- URL: https://github.com/tomoat/nuxt3-app
- Owner: tomoat
- Created: 2021-12-07T07:02:02.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-11T18:04:04.000Z (over 2 years ago)
- Last Synced: 2024-10-17T12:39:55.160Z (about 1 month ago)
- Language: TypeScript
- Size: 88.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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).