https://github.com/baroshem/nuxt-apollo-tailwind
Repository for Nuxt 3, Apollo, and Tailwind Crash Course
https://github.com/baroshem/nuxt-apollo-tailwind
Last synced: 2 months ago
JSON representation
Repository for Nuxt 3, Apollo, and Tailwind Crash Course
- Host: GitHub
- URL: https://github.com/baroshem/nuxt-apollo-tailwind
- Owner: Baroshem
- Created: 2022-10-13T14:40:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-16T21:54:14.000Z (over 2 years ago)
- Last Synced: 2025-02-14T09:57:52.042Z (4 months ago)
- Language: Vue
- Homepage: nuxt-apollo-tailwind.vercel.app
- Size: 451 KB
- Stars: 4
- Watchers: 1
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## 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
```Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.