repos

isaacbythewood.com-nextjs

mirror archived upstream

Animation-heavy personal portfolio on Next.js: a custom cursor, a page-transition loader, and canvas backgrounds.

canvas-animationscss-modulesdark-themehandcodednextjspersonal-websiteportfolioreact

256 B · 22 lines · Makefile Raw History
 1export NEXT_TELEMETRY_DISABLED=1
 2
 3.PHONY: install run build push resume clean
 4
 5run:
 6	bun start
 7
 8install:
 9	bun install
10
11build:
12	bun run next:build
13
14push:
15	git remote | xargs -I R git push R master
16
17resume:
18	bun run resume
19
20clean:
21	rm -rf .next node_modules