https://github.com/nicooprat/nicooprat
My own website, built with Nuxt 3, Vite 3, Tailwind 3, Puppeteer & Netlify
https://github.com/nicooprat/nicooprat
apify netlify nuxt tailwindcss vite vue
Last synced: 7 months ago
JSON representation
My own website, built with Nuxt 3, Vite 3, Tailwind 3, Puppeteer & Netlify
- Host: GitHub
- URL: https://github.com/nicooprat/nicooprat
- Owner: nicooprat
- Created: 2022-06-29T10:03:53.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-22T06:30:17.000Z (about 3 years ago)
- Last Synced: 2025-02-15T07:19:04.244Z (9 months ago)
- Topics: apify, netlify, nuxt, tailwindcss, vite, vue
- Language: Vue
- Homepage: https://www.nicooprat.com
- Size: 24.5 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
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.