Edit README

This commit is contained in:
2025-08-30 13:30:50 +07:00
parent 92dd89b2de
commit ae57734a23
+14 -63
View File
@@ -1,75 +1,26 @@
# Nuxt Minimal Starter # Web
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. Techit's personal website, built with Nuxt.
## Setup ## Getting started
Make sure to install dependencies: This project is set to use `pnpm` as the package manager.
```bash ```bash
# npm # clone the repository
npm install git clone https://github.com/techitwinner/web.git
# pnpm # update submodule (which now has content)
pnpm install git submodule update --remote
# yarn # install packages
yarn install pnpm i
# bun # start development server
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm dev pnpm dev
# yarn # enjoy coding!
yarn dev
# bun
bun run dev
``` ```
## Production ## License
Code, pages, layout are licensed under GPT 3.0, please refer to [LICENSE](/LICENSE) file, but this does not include blog posts (content), images, media, etc.
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.