https://github.com/insidewebdev/twitter-clone
https://github.com/insidewebdev/twitter-clone
nuxt nuxt-3 prisma prisma2 tailwindcss vue vue-3
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/insidewebdev/twitter-clone
- Owner: insidewebdev
- Created: 2022-05-26T05:02:34.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-29T09:56:24.000Z (about 1 year ago)
- Last Synced: 2024-07-30T19:38:04.867Z (9 months ago)
- Topics: nuxt, nuxt-3, prisma, prisma2, tailwindcss, vue, vue-3
- Language: Vue
- Homepage:
- Size: 426 KB
- Stars: 244
- Watchers: 1
- Forks: 69
- Open Issues: 7
-
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.