mirror of
https://github.com/eliasrenman/url-shortener.git
synced 2026-03-16 20:16:06 +01:00
8 lines
137 B
Makefile
8 lines
137 B
Makefile
.PHONY: run
|
|
run: web/dist
|
|
cargo run
|
|
|
|
web/dist: $(shell find web/src -type f) web/bun.lock
|
|
@cd web && bun run build
|
|
# @touch web/build
|