This is a personal blog that highlights who I am as a Web Engineer, what I'm learning, and projects I'm working on. This blog was built using Nuxt 3. You can check out the branches dropdown to take a peak at my process. Each branch is a new concept I was working through at the time.
This blog will get published on AWS... eventually 😅.
Shout out to these great resources for helping me fill in some knowleges gaps on Nuxt and Vue 3 stuff.
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview