Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 1.72 KB

File metadata and controls

59 lines (44 loc) · 1.72 KB

Personal Site

Nuxt logo TypeScript logo CSS logo HTML5 logo VSCode logo Linux logo

This is the source code for my personal website, cpluspatch.com. It is built using Nuxt.js.

Installation

Use whatever package manager you want, I don't care, but don't commit the lockfile if you don't use Bun.

bun install
# or
npm install
# or whatever

Development

It's a standard Nuxt.js project so

bun dev
# or
npm run dev
# or whatever

Build

This uses the static build preset by default so it prerenders everything nicely.

bun run build
# or
npm run build
# or whatever