Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/radyai/myweb
My personal website for the seventh time haha
https://github.com/radyai/myweb
firebase nuxt personal-web
Last synced: 11 days ago
JSON representation
My personal website for the seventh time haha
- Host: GitHub
- URL: https://github.com/radyai/myweb
- Owner: RadyaI
- Created: 2024-07-16T04:06:13.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-22T08:45:01.000Z (25 days ago)
- Last Synced: 2024-10-23T12:49:12.232Z (24 days ago)
- Topics: firebase, nuxt, personal-web
- Language: Vue
- Homepage: https://my.radya.fun
- Size: 625 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt Example
Deploy your [Nuxt](https://nuxt.com) project to Vercel with zero configuration.
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/vercel/vercel/tree/main/examples/nuxtjs&template=nuxtjs)
_Live Example: https://nuxtjs-template.vercel.app_
Look at the [Nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn# 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://nuxt.com/docs/getting-started/deployment#presets) for more information.