Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/the-pink-hacker/thepinkhacker.com
https://github.com/the-pink-hacker/thepinkhacker.com
firebase github-pages html html5 pages sass scss vite vite-vue vite-vue3 vitejs vue vue3 vuejs website
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/the-pink-hacker/thepinkhacker.com
- Owner: the-pink-hacker
- Created: 2023-04-02T00:35:28.000Z (over 1 year ago)
- Default Branch: nuxt
- Last Pushed: 2024-06-20T01:55:29.000Z (5 months ago)
- Last Synced: 2024-06-21T13:47:06.133Z (5 months ago)
- Topics: firebase, github-pages, html, html5, pages, sass, scss, vite, vite-vue, vite-vue3, vitejs, vue, vue3, vuejs, website
- Language: Vue
- Homepage: https://thepinkhacker.com/
- Size: 1.42 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- 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://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.