This commit is contained in:
2026-06-22 05:51:46 +03:00
commit 03f9319b3a
32 changed files with 11008 additions and 0 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
.PHONY: dev build preview check lint clean install
install:
npm install
dev:
npm run dev
build:
npm run build
preview:
npm run preview
check:
npm run check
lint:
npm run check
clean:
rm -rf dist/ .astro/ node_modules/