Skip to content
This repository has been archived by the owner on Apr 15, 2021. It is now read-only.

Latest commit

 

History

History
executable file
·
52 lines (36 loc) · 1.14 KB

README.md

File metadata and controls

executable file
·
52 lines (36 loc) · 1.14 KB

A Nuxt.js starter project template using Tailwind CSS without the distraction of a complicated development environment.


Prerequisites

Make sure to have node 8.0+ and npm 5.0+ installed

Installation

This is a project template for vue-cli.

$ vue init sgraewe/nuxt-tailwind my-project
$ cd my-project
# install dependencies
$ npm install # yarn install

Make sure to use a version of vue-cli >= 2.1 (vue -V).

Usage

Development

# serve with hot reloading at localhost:3000
$ npm run dev # yarn dev

Go to http://localhost:3000

Production

# build for production and launch the server
$ npm run build # yarn build
$ npm start # yarn start

Generate

# generate a static project
$ npm run generate # yarn generate