Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damisparks/nuxt-boilerplate
🏕 Opinionated Nuxt3 Starter Template
https://github.com/damisparks/nuxt-boilerplate
eslint nuxt nuxt-typescript nuxt3 nuxt3-template pinia tailwindcss tailwindcss-v3 vue vue3
Last synced: about 1 month ago
JSON representation
🏕 Opinionated Nuxt3 Starter Template
- Host: GitHub
- URL: https://github.com/damisparks/nuxt-boilerplate
- Owner: damisparks
- License: mit
- Created: 2023-02-23T21:28:41.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-18T15:28:52.000Z (over 1 year ago)
- Last Synced: 2023-07-18T16:45:29.319Z (over 1 year ago)
- Topics: eslint, nuxt, nuxt-typescript, nuxt3, nuxt3-template, pinia, tailwindcss, tailwindcss-v3, vue, vue3
- Language: Vue
- Homepage: https://nuxity.netlify.app/
- Size: 139 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
[](https://app.netlify.com/start/deploy?repository=https://github.com/damisparks/nuxity#NODE_VERSION=14&AWS_LAMBDA_JS_RUNTIME=nodejs14.x)
We recommend to look at the [documentation](http://v3.nuxtjs.org).
## Features* ⚡️ [Nuxt 3](https://github.com/nuxt/nuxt), [pnpm](https://pnpm.io/) - super fast
* 🌊 [TailwindCSS](https://tailwindcss.com/), [tailwindcss-aspect-ratio](https://github.com/tailwindlabs/tailwindcss-aspect-ratio) & [tailwindcss-forms](https://github.com/tailwindlabs/tailwindcss-forms)
* [Google fonts](https://github.com/nuxt-community/google-fonts-module)
* 🍍 [Official Vue State & Store Management (Pinia)](https://pinia.vuejs.org/)
* ✨ [Eslint Nuxt](https://github.com/nuxt/eslint-config)
* 🐕 [Husky](https://github.com/typicode/husky) & [Lint-staged](https://github.com/okonet/lint-staged)
* Use [Nuxt Image](https://github.com/nuxt/image#readme)
* Error page
* Add [Nuxt Icon](https://github.com/nuxt-modules/icon)## TODO
* 📱 Mobile Detect module [@nuxtjs/device](https://www.npmjs.com/package/@nuxtjs/device/v/3.0.0?activeTab=readme)
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install
```## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.