https://github.com/baroshem/nuxt-partytown
Demo of improving Performance in Nuxt with Partytown and Plausible
https://github.com/baroshem/nuxt-partytown
Last synced: 3 months ago
JSON representation
Demo of improving Performance in Nuxt with Partytown and Plausible
- Host: GitHub
- URL: https://github.com/baroshem/nuxt-partytown
- Owner: Baroshem
- Created: 2022-10-23T09:33:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-16T21:57:25.000Z (over 2 years ago)
- Last Synced: 2025-02-28T21:09:08.773Z (3 months ago)
- Language: TypeScript
- Homepage: nuxt-partytown.vercel.app
- Size: 258 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
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.