https://github.com/devbyray/devbyrayray-blog-nuxt
My personal dev blog 🚀
https://github.com/devbyray/devbyrayray-blog-nuxt
javascript nuxt nuxt-content nuxt3 tailwindcss vue vue3
Last synced: about 2 months ago
JSON representation
My personal dev blog 🚀
- Host: GitHub
- URL: https://github.com/devbyray/devbyrayray-blog-nuxt
- Owner: devbyray
- Created: 2022-09-30T14:25:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-06T14:16:11.000Z (almost 3 years ago)
- Last Synced: 2025-01-12T10:11:55.072Z (over 1 year ago)
- Topics: javascript, nuxt, nuxt-content, nuxt3, tailwindcss, vue, vue3
- Language: Vue
- Homepage: https://byrayray.dev
- Size: 73.5 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
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.