Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vuetifyjs/nuxt
Nuxt.js + Vuetify.js starter project template.
https://github.com/vuetifyjs/nuxt
Last synced: 4 months ago
JSON representation
Nuxt.js + Vuetify.js starter project template.
- Host: GitHub
- URL: https://github.com/vuetifyjs/nuxt
- Owner: vuetifyjs
- License: mit
- Archived: true
- Fork: true (nuxt-community/starter-template)
- Created: 2017-05-20T08:52:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-26T23:52:26.000Z (about 6 years ago)
- Last Synced: 2024-08-02T01:22:00.610Z (7 months ago)
- Language: Vue
- Homepage:
- Size: 187 KB
- Stars: 306
- Watchers: 14
- Forks: 109
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Starter
A [Nuxt.js](https://github.com/nuxt/nuxt.js) + [Vuetify.js](https://github.com/vuetifyjs/vuetify) starter project template without the distraction of a complicated development environment.
## Installation
This is a project template for [vue-cli](https://github.com/vuejs/vue-cli).
``` bash
$ vue init vuetifyjs/nuxt my-project
$ cd my-project
# install dependencies
$ npm install # Or yarn install
```> Make sure to use a version of vue-cli >= 2.1 (`vue -V`).
## Usage
### Development
``` bash
# serve with hot reloading at localhost:3000
$ npm run dev
```Go to [http://localhost:3000](http://localhost:3000)
### Production
``` bash
# build for production and launch the server
$ npm run build
$ npm start
```### Generate
``` bash
# generate a static project
$ npm run generate
```